diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-18 02:42:03 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-18 02:42:03 +0000 |
commit | 80f04b2bec3236310a19ea17a3a3462f5d5f8de9 (patch) | |
tree | e41725a686069c417e8d24630c98942a2e099dda | |
parent | d23c5d4b7a3d880ca19478c049478ac783a321a8 (diff) | |
download | fetchmail-80f04b2bec3236310a19ea17a3a3462f5d5f8de9.tar.gz fetchmail-80f04b2bec3236310a19ea17a3a3462f5d5f8de9.tar.bz2 fetchmail-80f04b2bec3236310a19ea17a3a3462f5d5f8de9.zip |
*** empty log message ***
svn path=/trunk/; revision=1364
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | driver.c | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -19,8 +19,9 @@ fetchmail-4.2.2 () * ETRN mode no longer tries to flush queue for "localhost". * Introduced new DNS error return 11 to indicate DNS failure at startup. * More portation tweaks for unusual Unixes. +* Make sure any X-Fetchmail-Error: line is properly terminated. -There are 286 people on the fetchmail-friends list. +There are 287 people on the fetchmail-friends list. fetchmail-4.2.1 (Sun Sep 14 16:31:58 EDT 1997) * Type and inclusion changes to eliminate warnings on weird Unixes. @@ -447,7 +447,7 @@ static RETSIGTYPE (*sigchld)(); static int sizeticker; static int stuffline(struct query *ctl, char *buf) -/* ship a line to the given control block's SMTP server */ +/* ship a line to the given control block's output sink (SMTP server or MDA) */ { int n; @@ -1127,6 +1127,8 @@ int num; /* index of message */ } + strcat(errmsg, "\n"); + /* ship out the error line */ if (sinkfp) stuffline(ctl, errmsg); |