X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/aa6dc37ccb73c83f652e72ed1ca7700934a52331..6a7cc46cb279b9dbf12977177330aeebb912aa34:/sender.c diff --git a/sender.c b/sender.c index f9a18d26..3d390526 100644 --- a/sender.c +++ b/sender.c @@ -277,7 +277,17 @@ void send_files(struct file_list *flist, int f_out, int f_in) } if (!read_batch) { /* dw */ - if (buf) unmap_file(buf); + if (buf) { + j = unmap_file(buf); + if (j) { + io_error = 1; + rprintf(FERROR, + "read errors mapping %s: (%d) %s\n", + full_fname(fname), + j, + strerror(j)); + } + } close(fd); }