aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-02-08 07:44:21 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-02-08 07:44:21 +0000
commit5dcd6d8129ac95c726d3e8990973b76f12fff4d0 (patch)
tree6897d8fc7195eb9bf02b04938ae839a5a226c55b /driver.c
parent207f1d7aa75ebf4cd695fc1bc735dc98c49cc5f5 (diff)
downloadfetchmail-5dcd6d8129ac95c726d3e8990973b76f12fff4d0.tar.gz
fetchmail-5dcd6d8129ac95c726d3e8990973b76f12fff4d0.tar.bz2
fetchmail-5dcd6d8129ac95c726d3e8990973b76f12fff4d0.zip
Suppress dancing progress dots when syslogging.
svn path=/trunk/; revision=2383
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/driver.c b/driver.c
index 5d64978e..c63793d4 100644
--- a/driver.c
+++ b/driver.c
@@ -499,8 +499,11 @@ static int readheaders(int sock,
sizeticker += linelen;
while (sizeticker >= SIZETICKER)
{
- fputc('.', stdout);
- fflush(stdout);
+ if (!run.use_syslog)
+ {
+ fputc('.', stdout);
+ fflush(stdout);
+ }
sizeticker -= SIZETICKER;
}
}