diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 08:00:05 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 08:00:05 +0000 |
commit | 40350ef54e836c2d263b9835a9f72ef6d972628d (patch) | |
tree | 67d98414c3cb2f94e4ee5a3d9e0b3e00cda3afec /smtp.c | |
parent | f9d3be3565843872d52b8204fa99225b8dcb0889 (diff) | |
download | fetchmail-40350ef54e836c2d263b9835a9f72ef6d972628d.tar.gz fetchmail-40350ef54e836c2d263b9835a9f72ef6d972628d.tar.bz2 fetchmail-40350ef54e836c2d263b9835a9f72ef6d972628d.zip |
De-confuse SMTP response echoing.
svn path=/trunk/; revision=505
Diffstat (limited to 'smtp.c')
-rw-r--r-- | smtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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') |