diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-26 04:01:30 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-26 04:01:30 +0000 |
commit | 7aca93e4ee74fca4e04c04d6f29ae4a52c125908 (patch) | |
tree | 9200cf8dbbfc2e2a197eecb619f4458c0404fe32 /smtp.c | |
parent | cffef417bb9e0a231968c5fbadca8e5141a65083 (diff) | |
download | fetchmail-7aca93e4ee74fca4e04c04d6f29ae4a52c125908.tar.gz fetchmail-7aca93e4ee74fca4e04c04d6f29ae4a52c125908.tar.bz2 fetchmail-7aca93e4ee74fca4e04c04d6f29ae4a52c125908.zip |
Fix a garbage return.
svn path=/trunk/; revision=2209
Diffstat (limited to 'smtp.c')
-rw-r--r-- | smtp.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -168,6 +168,8 @@ int SMTP_eom(int sock) */ if (smtp_mode == 'S') ok = SMTP_ok(sock); + else + ok = SM_OK; return ok; } |