From 222712b65f01604d6a79fc5096b30ee960f3986a Mon Sep 17 00:00:00 2001 From: Graham Wilson Date: Mon, 9 Aug 2004 04:07:35 +0000 Subject: Don't output progress dots if output is only going to syslog. svn path=/trunk/; revision=3928 --- transact.c | 4 ++-- 1 file 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); -- cgit v1.2.3