aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-06-11 15:31:34 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-06-11 15:31:34 +0000
commit672bf0838ae4d00dc71020fa9e5a8b1b377ba045 (patch)
treebcbda32d89e01cdc6687c1fbe3640e7b43a251cf /driver.c
parentd9aa67fa440ae92764078d350aaf46f70ab8ffd7 (diff)
downloadfetchmail-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 79f0bd2b..20dd4a49 100644
--- a/driver.c
+++ b/driver.c
@@ -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);
}
}