tool_progress: shut off progress meter for --silent in parallel

Reported-by: finkjsc on github
Fixes #10573
Closes #10579
This commit is contained in:
Daniel Stenberg 2023-02-21 11:38:03 +01:00
parent bb11969838
commit 475207c1c8
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -173,7 +173,7 @@ bool progress_meter(struct GlobalConfig *global,
struct timeval now;
long diff;
if(global->noprogress)
if(global->noprogress || global->silent)
return FALSE;
now = tvnow();