aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--driver.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 11b388bb..01ce5226 100644
--- a/NEWS
+++ b/NEWS
@@ -18,6 +18,7 @@ pl 3.9.1 (Sat Apr 5 14:22:16 EST 1997):
* Delivery failures are now syslogged as LOG_ERR, not LOG_INFO.
* --check now turns off --daemon.
* --syslog is now independent of --daemon.
+* Multiple-error X- headers are improved.
There are 246 people on the fetchmail-friends list.
(24 bad addresses were dropped)
diff --git a/driver.c b/driver.c
index 04b28a67..744f16e3 100644
--- a/driver.c
+++ b/driver.c
@@ -923,7 +923,7 @@ char *realname; /* real name of host */
for (idp = xmit_names; idp; idp = idp->next)
if (idp->val.num == XMIT_REJECT)
break;
- sprintf(errhd, "recipient address %s didn't match any local name", idp->id);
+ sprintf(errhd+strlen(errhd), "recipient address %s didn't match any local name", idp->id);
}
if (bad_addresses)