]> granicus.if.org Git - nethack/commitdiff
the old strcmpi in utility complaint again
authornhmall <mjnh@persona.ca>
Wed, 3 Feb 2016 11:25:13 +0000 (06:25 -0500)
committernhmall <mjnh@persona.ca>
Wed, 3 Feb 2016 11:25:13 +0000 (06:25 -0500)
win/share/tilemap.c

index 5079ead2d2249885ba5b43645a4aab6c20605c8f..9c1ac1b330e5d2aa9d0a4bb06a104db5a4404d6f 100644 (file)
@@ -1,4 +1,4 @@
-/* NetHack 3.6 tilemap.c       $NHDT-Date: 1454464776 2016/02/03 01:59:36 $  $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.26 $ */
+/* NetHack 3.6 tilemap.c       $NHDT-Date: 1454498706 2016/02/03 11:25:06 $  $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.27 $ */
 /* NetHack may be freely redistributed.  See license for details. */
 
 /*
@@ -620,8 +620,8 @@ int idx;
 const char *encountered, *expected;
 {
     if (idx >= 0 && idx < SIZE(altlabels)) {
-        if (!strcmpi(altlabels[idx].expectedlabel, expected)) {
-            if (!strcmpi(altlabels[idx].betterlabel, encountered))
+        if (!strcmp(altlabels[idx].expectedlabel, expected)) {
+            if (!strcmp(altlabels[idx].betterlabel, encountered))
                 return TRUE;
         }
     }