X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/21cddef2b460098f5289b9cdbd592bf8f0f9e759..bc40a305032db262e72b92c938203fd2bd42e4c9:/receiver.c diff --git a/receiver.c b/receiver.c index 0135e426..74c2e752 100644 --- a/receiver.c +++ b/receiver.c @@ -387,15 +387,23 @@ static int we_want_redo(int desired_ndx) static int gen_wants_ndx(int desired_ndx) { static int next_ndx = -1; - static BOOL got_eof = 0; + static int done_cnt = 0; + static BOOL got_eof = False; + int flist_num = first_flist->flist_num; if (got_eof) return 0; while (next_ndx < desired_ndx) { + if (inc_recurse && flist_num <= done_cnt) + return 0; if (next_ndx >= 0) no_batched_update(next_ndx, False); if ((next_ndx = read_int(batch_gen_fd)) < 0) { + if (inc_recurse) { + done_cnt++; + continue; + } got_eof = True; return 0; } @@ -828,11 +836,6 @@ int recv_files(int f_in, char *local_name) if (phase == 2 && delay_updates) /* for protocol_version < 29 */ handle_delayed_updates(local_name); - if (read_batch) { - read_int(batch_gen_fd); /* Discard -1 */ - read_del_stats(batch_gen_fd); - } - if (DEBUG_GTE(RECV, 1)) rprintf(FINFO,"recv_files finished\n");