aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-06-17 16:56:37 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-06-17 16:56:37 +0000
commit75812ba512423c84baba3acecdedbfd9451f8b29 (patch)
tree175852f7bbc41c15c2294b86ae18063e0f16cc46
parent873de9b9e6309f4ee55c535e9824d013a5a9f252 (diff)
downloadfetchmail-75812ba512423c84baba3acecdedbfd9451f8b29.tar.gz
fetchmail-75812ba512423c84baba3acecdedbfd9451f8b29.tar.bz2
fetchmail-75812ba512423c84baba3acecdedbfd9451f8b29.zip
Don't issue body bytes in silent mode.
svn path=/trunk/; revision=1103
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 908ad4fd..a675365c 100644
--- a/driver.c
+++ b/driver.c
@@ -1538,7 +1538,7 @@ const struct method *proto; /* protocol method table */
{
if ((ok=(protocol->fetch_body)(sock,ctl,num,&len)))
goto cleanUp;
- if (!msgsizes)
+ if (outlevel > O_SILENT && !msgsizes)
error_build(" (%d body bytes) ", len);
set_timeout(ctl->server.timeout);
}