aboutsummaryrefslogtreecommitdiffstats
path: root/smtp.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-11-26 04:01:30 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-11-26 04:01:30 +0000
commit7aca93e4ee74fca4e04c04d6f29ae4a52c125908 (patch)
tree9200cf8dbbfc2e2a197eecb619f4458c0404fe32 /smtp.c
parentcffef417bb9e0a231968c5fbadca8e5141a65083 (diff)
downloadfetchmail-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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/smtp.c b/smtp.c
index 31aba1a6..9e26ae77 100644
--- a/smtp.c
+++ b/smtp.c
@@ -168,6 +168,8 @@ int SMTP_eom(int sock)
*/
if (smtp_mode == 'S')
ok = SMTP_ok(sock);
+ else
+ ok = SM_OK;
return ok;
}