diff options
| author | Eric S. Raymond <esr@thyrsus.com> | 1999-03-07 16:52:38 +0000 |
|---|---|---|
| committer | Eric S. Raymond <esr@thyrsus.com> | 1999-03-07 16:52:38 +0000 |
| commit | 3923b16de9ffae686d492220883682fa2ab1aa01 (patch) | |
| tree | 409a70ee2eb8dc9a8245b321c7d39738e1a9c868 | |
| parent | ba5248a66ae41f813d3054091cb7b93a43b2115c (diff) | |
| download | fetchmail-3923b16de9ffae686d492220883682fa2ab1aa01.tar.gz fetchmail-3923b16de9ffae686d492220883682fa2ab1aa01.tar.bz2 fetchmail-3923b16de9ffae686d492220883682fa2ab1aa01.zip | |
Verbosity fix.
svn path=/trunk/; revision=2396
| -rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 11d3d9da..685389fb 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1266,7 +1266,7 @@ static int query_host(struct query *ctl) * If we're syslogging the progress messages are automatically timestamped. * Force timestamping if we're going to a logfile. */ - if (outlevel >= O_VERBOSE || run.logfile) + if (outlevel >= O_VERBOSE || (run.logfile && outlevel > O_SILENT)) { report(stdout, _("%s querying %s (protocol %s) at %s\n"), VERSION, |
