summaryrefslogtreecommitdiff
path: root/rsync.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2007-05-23 00:42:32 +0000
committerWayne Davison <wayned@samba.org>2007-05-23 00:42:32 +0000
commit1faa1a6da93065febb7e08830e5da37a09b6444d (patch)
treebbf839cd5a57b1ea118f9d23c51dca2e4f0462e4 /rsync.c
parentb5ae4e25c26f006e686dcefde9fe7d489f840248 (diff)
downloadrsync-1faa1a6da93065febb7e08830e5da37a09b6444d.tar.gz
Output a -vvv(erbose) message when receiving an incremental file list.
Diffstat (limited to 'rsync.c')
-rw-r--r--rsync.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/rsync.c b/rsync.c
index 30c93ae0..292e5186 100644
--- a/rsync.c
+++ b/rsync.c
@@ -175,6 +175,10 @@ int read_ndx_and_attrs(int f_in, int *iflag_ptr, uchar *type_ptr,
/* Send everything read from f_in to msg_fd_out. */
send_msg_int(MSG_FLIST, ndx);
start_flist_forward(f_in);
+ if (verbose > 3) {
+ rprintf(FINFO, "[%s] receiving flist for dir %d\n",
+ who_am_i(), ndx);
+ }
flist = recv_file_list(f_in);
flist->parent_ndx = ndx;
stop_flist_forward();