Make --progress imply --verbose without incrementing verbosity.
[rsync/rsync.git] / options.c
index 01e9695..52fc8c7 100644 (file)
--- 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);