]> Pileus Git - ~andy/fetchmail/commitdiff
Fix a garbage return.
authorEric S. Raymond <esr@thyrsus.com>
Thu, 26 Nov 1998 04:01:30 +0000 (04:01 -0000)
committerEric S. Raymond <esr@thyrsus.com>
Thu, 26 Nov 1998 04:01:30 +0000 (04:01 -0000)
svn path=/trunk/; revision=2209

smtp.c

diff --git a/smtp.c b/smtp.c
index 31aba1a626e275be204dba02ae1b5affc9999d38..9e26ae77f707c7d5ec40785cf4c6f4844df68b6d 100644 (file)
--- 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;
 }