diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-09-04 13:43:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-09-04 13:43:20 +0000 |
commit | 56587e282115763b356ed88f12c7fa9c734bf1b4 (patch) | |
tree | 262738f32811200fe9490dbced5c47b9c8e19546 | |
parent | 33b8e71583da4e32833c5d72dcfef317a0fd6f60 (diff) |
Sven Neuhaus made --silent being acknowledged even when multiple URLs
were used
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 88b9dfb69..37c63b6f1 100644 --- a/src/main.c +++ b/src/main.c @@ -2598,7 +2598,7 @@ operate(struct Configurable *config, int argc, char *argv[]) config->conf |= CONF_NOPROGRESS; - if (urlnum > 1) { + if (urlnum > 1 && !(config->conf&CONF_MUTE)) { fprintf(stderr, "\n[%d/%d]: %s --> %s\n", i+1, urlnum, url, outfile ? outfile : "<stdout>"); if (separator) |