diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-26 09:30:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-26 09:30:32 +0000 |
commit | 684635a1c8f5e2e1db6b7888358a3799ac2f08a1 (patch) | |
tree | a7eba793ce5d98d9227b24b13d56720bc82952c3 | |
parent | 5e3e958000c13bd775da7c1fd3d16142b565adaa (diff) | |
download | fetchmail-684635a1c8f5e2e1db6b7888358a3799ac2f08a1.tar.gz fetchmail-684635a1c8f5e2e1db6b7888358a3799ac2f08a1.tar.bz2 fetchmail-684635a1c8f5e2e1db6b7888358a3799ac2f08a1.zip |
Message cleanup.
svn path=/trunk/; revision=1419
-rw-r--r-- | driver.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1741,14 +1741,14 @@ const struct method *proto; /* protocol method table */ } } - /* check to see if the numbers matched? */ - if (msgsizes && msglen != msgsizes[num-1]) - error(0, 0, "size of message %d (%d) was not what was expected (%d)", num, msglen, msgsizes[num-1]); - /* end-of-message processing starts here */ if (outlevel == O_VERBOSE) fputc('\n', stderr); + /* check to see if the numbers matched? */ + if (msgsizes && msglen != msgsizes[num-1]) + error(0, 0, "size of message %d (%d) was not what was expected (%d)", num, msglen, msgsizes[num-1]); + if (ctl->mda) { int rc; |