From: Wayne Davison Date: Sun, 20 Feb 2005 22:11:43 +0000 (+0000) Subject: Tweaked the rprintf() that outputs about the delta-transmission X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/1b1fef20b3c200069314aaa40d61b6a819b93c31 Tweaked the rprintf() that outputs about the delta-transmission enablement. --- diff --git a/generator.c b/generator.c index 12d790c5..5bad8a55 100644 --- a/generator.c +++ b/generator.c @@ -885,10 +885,10 @@ void generate_files(int f_out, struct file_list *flist, char *local_name, } if (verbose >= 2) { - rprintf(FINFO, + rprintf(FINFO, "delta-transmission %s\n", whole_file > 0 - ? "delta-transmission disabled for local transfer or --whole-file\n" - : "delta transmission enabled\n"); + ? "disabled for local transfer or --whole-file" + : "enabled"); } /* We expect to just sit around now, so don't exit on a timeout.