From 1c1cf8830946f754a86df82d9851cbeb0bcb45c1 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 2 Apr 1997 03:33:06 +0000 Subject: Caseblind comparison of domain names. svn path=/trunk/; revision=942 --- driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'driver.c') diff --git a/driver.c b/driver.c index a21c8a62..6e35ca58 100644 --- a/driver.c +++ b/driver.c @@ -248,7 +248,7 @@ struct idlist **xmit_names; /* list of recipient names parsed out */ rhs = atsign + (strlen(atsign) - strlen(idp->id)); if ((rhs[-1] == '.' || rhs[-1] == '@') - && strcmp(rhs, idp->id) == 0) + && strcasecmp(rhs, idp->id) == 0) { if (outlevel == O_VERBOSE) error(0, 0, "passed through %s matching %s", -- cgit v1.2.3