From: nhmall Date: Wed, 3 Feb 2016 11:25:13 +0000 (-0500) Subject: the old strcmpi in utility complaint again X-Git-Tag: NetHack-3.6.1_RC01~959 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ac64a976b876c21507563c35c494f0869858716;p=nethack the old strcmpi in utility complaint again --- diff --git a/win/share/tilemap.c b/win/share/tilemap.c index 5079ead2d..9c1ac1b33 100644 --- a/win/share/tilemap.c +++ b/win/share/tilemap.c @@ -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; } }