summaryrefslogtreecommitdiff
path: root/flist.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2009-02-28 08:02:25 -0800
committerWayne Davison <wayned@samba.org>2009-02-28 08:07:01 -0800
commit8d10cbfcb13fb20eeb34441365d8b73d4a6b0e41 (patch)
treed91390ffb00cf333e15d281547beae8f3b78b2a4 /flist.c
parente8d6fe62614f1bd21a41aa779188d9d0ec57de22 (diff)
downloadrsync-8d10cbfcb13fb20eeb34441365d8b73d4a6b0e41.tar.gz
Made --progress use ir-chk instead of to-chk when the incremental
recursion scan is still active. Mention the output change more prominently in the NEWS file. Updated the --progress output in the manpage, with mention of the new "ir-chk" string's meaning.
Diffstat (limited to 'flist.c')
-rw-r--r--flist.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/flist.c b/flist.c
index 2fdff344..90c0ce50 100644
--- a/flist.c
+++ b/flist.c
@@ -2310,7 +2310,8 @@ struct file_list *send_file_list(int f, int argc, char *argv[])
* file-list to check if this is a 1-file xfer. */
send_extra_file_list(f, 1);
}
- }
+ } else
+ flist_eof = 1;
return flist;
}
@@ -2436,8 +2437,10 @@ struct file_list *recv_file_list(int f)
if (inc_recurse)
flist_done_allocating(flist);
- else if (f >= 0)
+ else if (f >= 0) {
recv_id_list(f, flist);
+ flist_eof = 1;
+ }
flist_sort_and_clean(flist, relative_paths);