summaryrefslogtreecommitdiffstats
path: root/mbbsd/name.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/name.c')
-rw-r--r--mbbsd/name.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/name.c b/mbbsd/name.c
index 85c849a7..83dcf373 100644
--- a/mbbsd/name.c
+++ b/mbbsd/name.c
@@ -111,7 +111,7 @@ InList(const word_t * list, const char *name)
const word_t *p;
for (p = list; p; p = p->next)
- if (!strcmp(p->word, name))
+ if (!strcasecmp(p->word, name))
return 1;
return 0;
}