diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-17 16:56:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-17 16:56:37 +0000 |
commit | 75812ba512423c84baba3acecdedbfd9451f8b29 (patch) | |
tree | 175852f7bbc41c15c2294b86ae18063e0f16cc46 | |
parent | 873de9b9e6309f4ee55c535e9824d013a5a9f252 (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |