diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-25 05:25:56 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-25 05:25:56 +0000 |
commit | 08ea46eb2a1f27aaedcb30f9a34959c5cb0f1b2e (patch) | |
tree | 7aa634d9f13f737fd8f704a36a7d43851aa81591 /driver.c | |
parent | f5a78bc0a152ae0a7a96927b8f8527c41a77a909 (diff) | |
download | fetchmail-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.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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 "); |