X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5f7ce2041c2a3514c6c1bad903c8dffb9bca2467..ef55c686bcb61d8c83e79eb73ed15639e4345d5c:/flist.c diff --git a/flist.c b/flist.c index 17402099..f12bf893 100644 --- a/flist.c +++ b/flist.c @@ -862,7 +862,8 @@ struct file_list *recv_file_list(int f) /* if protocol version is >= 17 then recv the io_error flag */ if (f != -1 && remote_version >= 17) { extern int module_id; - if (lp_ignore_errors(module_id)) { + extern int ignore_errors; + if (lp_ignore_errors(module_id) || ignore_errors) { read_int(f); } else { io_error |= read_int(f);