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 53f0d839..7c7225da 100644
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,7 @@
fetchmail-5.1.0 ():
* Fixed compilation error on systems without vnsprintf.
* No more GIFs! RPM is now patent-encumbrance-free.
+* Fix yet nother annoying qmail \n bug (thanks to Paul Gilmore).
There are 260 people on fetchmail-friends and 387 on fetchmail-announce.
diff --git a/driver.c b/driver.c
index 403bde10..4acd6ade 100644
--- a/driver.c
+++ b/driver.c
@@ -1010,7 +1010,7 @@ static int readheaders(int sock,
for (idp = msgblk.recipients; idp; idp = idp->next)
if (idp->val.status.mark == XMIT_REJECT)
break;
- sprintf(errhd+strlen(errhd), _("recipient address %s didn't match any local name\n"), idp->id);
+ sprintf(errhd+strlen(errhd), _("recipient address %s didn't match any local name"), idp->id);
}
}