Fix daemon's conveyance of io_error value from sender.
authorWayne Davison <wayned@samba.org>
Sat, 5 Sep 2009 16:40:53 +0000 (09:40 -0700)
committerWayne Davison <wayned@samba.org>
Sat, 5 Sep 2009 16:40:53 +0000 (09:40 -0700)
sender.c

index 815371a..e3a896a 100644 (file)
--- a/sender.c
+++ b/sender.c
@@ -172,6 +172,7 @@ void send_files(int f_in, int f_out)
        int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
        enum logcode log_code = log_before_transfer ? FLOG : FINFO;
        int f_xfer = write_batch < 0 ? batch_fd : f_out;
+       int save_io_error = io_error;
        int ndx, j;
 
        if (DEBUG_GTE(SEND, 1))
@@ -381,6 +382,9 @@ void send_files(int f_in, int f_out)
        if (make_backups < 0)
                make_backups = -make_backups;
 
+       if (io_error != save_io_error && protocol_version >= 30)
+               send_msg_int(MSG_IO_ERROR, io_error);
+
        if (DEBUG_GTE(SEND, 1))
                rprintf(FINFO, "send files finished\n");