diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-11 15:31:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-11 15:31:34 +0000 |
commit | 672bf0838ae4d00dc71020fa9e5a8b1b377ba045 (patch) | |
tree | bcbda32d89e01cdc6687c1fbe3640e7b43a251cf /driver.c | |
parent | d9aa67fa440ae92764078d350aaf46f70ab8ffd7 (diff) | |
download | fetchmail-672bf0838ae4d00dc71020fa9e5a8b1b377ba045.tar.gz fetchmail-672bf0838ae4d00dc71020fa9e5a8b1b377ba045.tar.bz2 fetchmail-672bf0838ae4d00dc71020fa9e5a8b1b377ba045.zip |
Suppress body size display if we've pre-fetched message sizes.
svn path=/trunk/; revision=1088
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1536,7 +1536,8 @@ const struct method *proto; /* protocol method table */ { if ((ok=(protocol->fetch_body)(sock,ctl,num,&len))) goto cleanUp; - error_build(" (%d body bytes) ", len); + if (!msgsizes) + error_build(" (%d body bytes) ", len); set_timeout(ctl->server.timeout); } } |