-
-/*
- * aliasbr.c -- new aliasing mechanism
+/* aliasbr.c -- new aliasing mechanism
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
while ((c = *string++)) {
if (*aliasent == '*')
return 1;
- if ((c | 040) != (*aliasent | 040))
+ if (tolower((unsigned char)c) != tolower((unsigned char)*aliasent))
return 0;
aliasent++;
}