X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/8250d8a1c60b58f730333d9becf9881ca2b78828..8e2771aa6e1fe242c0ad2919d2721e800d505d8e:/receiver.c diff --git a/receiver.c b/receiver.c index 1aba494c..8cd8331f 100644 --- a/receiver.c +++ b/receiver.c @@ -360,7 +360,7 @@ static void no_batched_update(int ndx, BOOL is_redo) rprintf(FERROR_XFER, "(No batched update for%s \"%s\")\n", is_redo ? " resend of" : "", f_name(file, NULL)); - if (inc_recurse) + if (inc_recurse && !dry_run) send_msg_int(MSG_NO_SEND, ndx); } @@ -537,6 +537,21 @@ int recv_files(int f_in, char *local_name) exit_cleanup(RERR_PROTOCOL); } + if (read_batch) { + int wanted = redoing + ? we_want_redo(ndx) + : gen_wants_ndx(ndx); + if (!wanted) { + rprintf(FINFO, + "(Skipping batched update for%s \"%s\")\n", + redoing ? " resend of" : "", + fname); + discard_receive_data(f_in, F_LENGTH(file)); + file->flags |= FLAG_FILE_SENT; + continue; + } + } + if (!do_xfers) { /* log the transfer */ log_item(FCLIENT, file, &stats, iflags, NULL); if (read_batch) @@ -550,18 +565,6 @@ int recv_files(int f_in, char *local_name) continue; } - if (read_batch) { - if (!(redoing ? we_want_redo(ndx) : gen_wants_ndx(ndx))) { - rprintf(FINFO, - "(Skipping batched update for%s \"%s\")\n", - redoing ? " resend of" : "", - fname); - discard_receive_data(f_in, F_LENGTH(file)); - file->flags |= FLAG_FILE_SENT; - continue; - } - } - partialptr = partial_dir ? partial_dir_fname(fname) : fname; if (protocol_version >= 29) {