diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-01-04 16:03:20 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-01-04 16:03:20 +0000 |
commit | a2eea3bf22d24fec7406e7a09d47d9f1f3441c05 (patch) | |
tree | a5d0167523b586a35d33790c8326d11ad979fb5d /fetchmail.c | |
parent | b4f2a65d7e700082cf369653fec64e46134f68b1 (diff) | |
download | fetchmail-a2eea3bf22d24fec7406e7a09d47d9f1f3441c05.tar.gz fetchmail-a2eea3bf22d24fec7406e7a09d47d9f1f3441c05.tar.bz2 fetchmail-a2eea3bf22d24fec7406e7a09d47d9f1f3441c05.zip |
Some verbose output disappeared in debug mode. Adding further -v options
would alternate between verbose and debug mode. debug mode now comprises
all verbose output, and adding more -v options does not switch back from
debug to verbose mode.
svn path=/branches/BRANCH_6-3/; revision=4597
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index d0b55114..3c331e5a 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -992,7 +992,7 @@ static int load_params(int argc, char **argv, int optind) || str_in_list(&ctl->server.akalist, argv[optind], TRUE)) { /* Is this correct? */ - if (predeclared && outlevel == O_VERBOSE) + if (predeclared && outlevel >= O_VERBOSE) fprintf(stderr,GT_("Warning: multiple mentions of host %s in config file\n"),argv[optind]); ctl->active = TRUE; predeclared = TRUE; |