aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGraham Wilson <graham@mknod.org>2004-08-09 04:07:35 +0000
committerGraham Wilson <graham@mknod.org>2004-08-09 04:07:35 +0000
commit222712b65f01604d6a79fc5096b30ee960f3986a (patch)
tree836a50263fe934d4d23118b9408ab2a71b6eedb3
parent62b873a4c989f0df580e9deea7245affc130fa10 (diff)
downloadfetchmail-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/transact.c b/transact.c
index e6020821..53b80ab8 100644
--- a/transact.c
+++ b/transact.c
@@ -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);