From: Martin Pool Date: Mon, 8 Apr 2002 08:06:18 +0000 (+0000) Subject: With -vv, show state of --whole-file once at the start of the transfer. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/3e7053ac5992c7a3a565ff5649c9db86a94b579b With -vv, show state of --whole-file once at the start of the transfer. --- diff --git a/generator.c b/generator.c index 2e6305a9..888835f8 100644 --- a/generator.c +++ b/generator.c @@ -485,6 +485,13 @@ void generate_files(int f,struct file_list *flist,char *local_name,int f_recv) rprintf(FINFO,"generator starting pid=%d count=%d\n", (int)getpid(),flist->count); + if (verbose >= 2) { + rprintf(FINFO, + disable_deltas_p() + ? "delta-transmission disabled for local transfer or --whole-file\n" + : "delta transmission enabled\n"); + } + /* we expect to just sit around now, so don't exit on a timeout. If we really get a timeout then the other process should exit */