X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/1fe0d1426309308128f0622452063f26de2ce590..342bfb5e23ebb372e0b1230f8124a4312f8a66d8:/sender.c diff --git a/sender.c b/sender.c index 9c550e96..c8ef7ccd 100644 --- a/sender.c +++ b/sender.c @@ -283,7 +283,7 @@ void send_files(int f_in, int f_out) if (!(s = receive_sums(f_in))) { io_error |= IOERR_GENERAL; - rprintf(FERROR, "receive_sums failed\n"); + rprintf(FERROR_XFER, "receive_sums failed\n"); exit_cleanup(RERR_PROTOCOL); } @@ -311,7 +311,7 @@ void send_files(int f_in, int f_out) /* map the local file */ if (do_fstat(fd, &st) != 0) { io_error |= IOERR_GENERAL; - rsyserr(FERROR, errno, "fstat failed"); + rsyserr(FERROR_XFER, errno, "fstat failed"); free_sums(s); close(fd); exit_cleanup(RERR_PROTOCOL);