aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-12-07 20:37:55 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-12-07 20:37:55 +0000
commite0c6254d3e0ddd6d9eec93c796f25aa59c0c7652 (patch)
treef83822e5a909b0004cf9501858d40834299dfd95 /driver.c
parent266a5f4a342a15bf30053ba7b7b0f53fb824c3c2 (diff)
downloadfetchmail-e0c6254d3e0ddd6d9eec93c796f25aa59c0c7652.tar.gz
fetchmail-e0c6254d3e0ddd6d9eec93c796f25aa59c0c7652.tar.bz2
fetchmail-e0c6254d3e0ddd6d9eec93c796f25aa59c0c7652.zip
Minor cleanup.
svn path=/trunk/; revision=2267
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver.c b/driver.c
index 84a48632..9b7f6be5 100644
--- a/driver.c
+++ b/driver.c
@@ -1010,13 +1010,13 @@ static int readheaders(int sock,
strcat(errhd, _("SMTP listener rejected local recipient addresses: "));
errlen = strlen(errhd);
for (idp = msgblk.recipients; idp; idp = idp->next)
- if (idp->val.status.mark == XMIT_ANTISPAM)
+ if (idp->val.status.mark == XMIT_RCPTBAD)
errlen += strlen(idp->id) + 2;
xalloca(errmsg, char *, errlen+3);
(void) strcpy(errmsg, errhd);
for (idp = msgblk.recipients; idp; idp = idp->next)
- if (idp->val.status.mark == XMIT_ANTISPAM)
+ if (idp->val.status.mark == XMIT_RCPTBAD)
{
strcat(errmsg, idp->id);
if (idp->next)