diff options
Diffstat (limited to 'src/tool_getparam.c')
-rw-r--r-- | src/tool_getparam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tool_getparam.c b/src/tool_getparam.c index b9c5eb701..16a7275bb 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -1619,9 +1619,9 @@ ParameterError getparameter(char *flag, /* f or -long-flag */ case 's': /* don't show progress meter, don't show errors : */ if(toggle) - config->mute = config->noprogress = TRUE; + global->mute = config->noprogress = TRUE; else - config->mute = config->noprogress = FALSE; + global->mute = config->noprogress = FALSE; if(global->showerror < 0) /* if still on the default value, set showerror to the reverse of toggle. This is to allow -S and -s to be used in an independent |