aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-05-16 16:24:52 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-05-16 16:24:52 +0000
commitaf3795ec802dfcc7760b6a8ca0317b9e3ad2aa48 (patch)
treef47cbdd1eb9931f69f91e571aef0722d523b516d /driver.c
parentd2cfeae23b90f9f1a943186ce319eb9c1355f921 (diff)
downloadfetchmail-af3795ec802dfcc7760b6a8ca0317b9e3ad2aa48.tar.gz
fetchmail-af3795ec802dfcc7760b6a8ca0317b9e3ad2aa48.tar.bz2
fetchmail-af3795ec802dfcc7760b6a8ca0317b9e3ad2aa48.zip
Fix a qmail \n bug.
svn path=/trunk/; revision=2475
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}