aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-06-25 05:25:56 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-06-25 05:25:56 +0000
commit08ea46eb2a1f27aaedcb30f9a34959c5cb0f1b2e (patch)
tree7aa634d9f13f737fd8f704a36a7d43851aa81591 /driver.c
parentf5a78bc0a152ae0a7a96927b8f8527c41a77a909 (diff)
downloadfetchmail-08ea46eb2a1f27aaedcb30f9a34959c5cb0f1b2e.tar.gz
fetchmail-08ea46eb2a1f27aaedcb30f9a34959c5cb0f1b2e.tar.bz2
fetchmail-08ea46eb2a1f27aaedcb30f9a34959c5cb0f1b2e.zip
Fixed Paul Sutcliffe's fooup.
svn path=/trunk/; revision=1113
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/driver.c b/driver.c
index 3f5fc649..5d8a0d01 100644
--- a/driver.c
+++ b/driver.c
@@ -1478,25 +1478,25 @@ const struct method *proto; /* protocol method table */
}
else
{
+ bool wholesize = !protocol->fetch_body;
+
/* request a message */
ok = (protocol->fetch_headers)(sock, ctl, num, &len);
if (ok != 0)
goto cleanUp;
set_timeout(ctl->server.timeout);
- if (outlevel > O_SILENT)
+ /* -1 means we didn't see a size in the response */
+ if (len == -1 && msgsizes)
{
- bool wholesize = !protocol->fetch_body;
+ len = msgsizes[num - 1];
+ wholesize = TRUE;
+ }
+ if (outlevel > O_SILENT)
+ {
error_build("reading message %d", num);
- /* -1 means we didn't see a size in the response */
- if (len == -1 && msgsizes)
- {
- len = msgsizes[num - 1];
- wholesize = TRUE;
- }
-
if (len > 0)
error_build(" (%d %sbytes)",
len, wholesize ? "" : "header ");