From: J.W. Schultz Date: Wed, 6 Aug 2003 06:45:14 +0000 (+0000) Subject: Make --progress imply --verbose without incrementing verbosity. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/e2559dbedc3999482ebcaa66696cc4dffd5430fa Make --progress imply --verbose without incrementing verbosity. --- diff --git a/options.c b/options.c index 01e9695c..52fc8c75 100644 --- a/options.c +++ b/options.c @@ -641,6 +641,9 @@ int parse_arguments(int *argc, const char ***argv, int frommain) exit_cleanup(RERR_SYNTAX); } + if (do_progress && !verbose) + verbose = 1; + *argv = poptGetArgs(pc); if (*argv) *argc = count_args(*argv); diff --git a/rsync.yo b/rsync.yo index fce0267c..ef11ea47 100644 --- a/rsync.yo +++ b/rsync.yo @@ -832,9 +832,7 @@ make a subsequent transfer of the rest of the file much faster. dit(bf(--progress)) This option tells rsync to print information showing the progress of the transfer. This gives a bored user something to watch. - -This option is normally combined with -v. Using this option without -the -v option will produce weird results on your display. +Implies --verbose without incrementing verbosity. dit(bf(-P)) The -P option is equivalent to --partial --progress. I found myself typing that combination quite often so I created an