From 3e7053ac5992c7a3a565ff5649c9db86a94b579b Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 8 Apr 2002 08:06:18 +0000 Subject: [PATCH] With -vv, show state of --whole-file once at the start of the transfer. --- generator.c | 7 +++++++ 1 file changed, 7 insertions(+) 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 */ -- 2.34.1