src/main.c (--no-verbose): don't show progress bar

Fixes #44431
This commit is contained in:
Anderson Goulart 2015-03-08 08:47:07 -07:00 committed by Darshit Shah
parent e316d253fa
commit 882ed28d59
1 changed files with 3 additions and 0 deletions

View File

@ -1271,6 +1271,9 @@ main (int argc, char **argv)
if (opt.verbose == -1)
opt.verbose = !opt.quiet;
if (!opt.verbose && opt.show_progress == -1)
opt.show_progress = false;
if (opt.quiet && opt.show_progress == -1)
opt.show_progress = false;