aboutsummaryrefslogtreecommitdiffstats
path: root/smtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'smtp.c')
-rw-r--r--smtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smtp.c b/smtp.c
index 475b847a..142821d0 100644
--- a/smtp.c
+++ b/smtp.c
@@ -107,7 +107,7 @@ static int SMTP_check(FILE *sockfp,char *argbuf)
if ((ok = SockGets(buf, sizeof(buf)-1, sockfp)) > 0) {
buf[ok] = '\0';
if (outlevel == O_VERBOSE)
- fprintf(stderr, "SMTP< %s", buf);
+ fprintf(stderr, "SMTP< %s\n", buf);
if (argbuf)
strcpy(argbuf,buf);
if (buf[0] == '1' || buf[0] == '2' || buf[0] == '3')