Skip to content
Snippets Groups Projects
Commit b4d2fbae authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

make -s/--silent properly toggle as it is documented

parent 42a2138d
No related branches found
No related tags found
No related merge requests found
......@@ -2388,7 +2388,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
break;
case 's':
/* don't show progress meter, don't show errors : */
config->conf |= (CONF_MUTE|CONF_NOPROGRESS);
config->conf ^= (CONF_MUTE|CONF_NOPROGRESS);
config->showerror ^= TRUE; /* toggle off */
break;
case 'S':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment