diff options
author | Graham Wilson <graham@mknod.org> | 2004-08-09 04:07:35 +0000 |
---|---|---|
committer | Graham Wilson <graham@mknod.org> | 2004-08-09 04:07:35 +0000 |
commit | 222712b65f01604d6a79fc5096b30ee960f3986a (patch) | |
tree | 836a50263fe934d4d23118b9408ab2a71b6eedb3 | |
parent | 62b873a4c989f0df580e9deea7245affc130fa10 (diff) | |
download | fetchmail-222712b65f01604d6a79fc5096b30ee960f3986a.tar.gz fetchmail-222712b65f01604d6a79fc5096b30ee960f3986a.tar.bz2 fetchmail-222712b65f01604d6a79fc5096b30ee960f3986a.zip |
Don't output progress dots if output is only going to syslog.
svn path=/trunk/; revision=3928
-rw-r--r-- | transact.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -568,7 +568,7 @@ int readheaders(int sock, sizeticker += linelen; while (sizeticker >= SIZETICKER) { - if (outlevel > O_SILENT && run.showdots) + if (outlevel > O_SILENT && run.showdots && !run.use_syslog) { fputc('.', stdout); fflush(stdout); @@ -1354,7 +1354,7 @@ int readbody(int sock, struct query *ctl, flag forward, int len) sizeticker += linelen; while (sizeticker >= SIZETICKER) { - if (outlevel > O_SILENT && run.showdots) + if (outlevel > O_SILENT && run.showdots && !run.use_syslog) { fputc('.', stdout); fflush(stdout); |