mcabber/src/compl.c
changeset 104 fe7257d251ac
parent 103 93dcc4e15d4a
child 121 94b251102069
--- a/mcabber/src/compl.c	Thu Apr 21 19:38:23 2005 +0000
+++ b/mcabber/src/compl.c	Thu Apr 21 20:22:35 2005 +0000
@@ -78,7 +78,7 @@
   // Build the list of matches
   for (sl_cat=compl_cat; sl_cat; sl_cat = g_slist_next(sl_cat)) {
     char *word = sl_cat->data;
-    if (!strncmp(prefix, word, len)) {
+    if (!strncasecmp(prefix, word, len)) {
       if (strlen(word) != len)
         c->list = g_slist_append(c->list, g_strdup(word+len)); // TODO sort
     }