From: Wayne Davison Date: Wed, 15 Feb 2006 08:06:45 +0000 (+0000) Subject: Call increment_active_files() during the first phase of a transfer X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/434573b226ea1caac92b0e3d0202e1548fabf595 Call increment_active_files() during the first phase of a transfer where --remove-sent-files was specified. --- diff --git a/generator.c b/generator.c index cccd1ec8..3a30efd3 100644 --- a/generator.c +++ b/generator.c @@ -1231,6 +1231,8 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx, rprintf(FINFO, "generating and sending sums for %d\n", ndx); notify_others: + if (remove_sent_files && !phase) + increment_active_files(ndx, itemizing, code); write_int(f_out, ndx); if (itemizing) { int iflags = ITEM_TRANSFER;