use lstrcmpi() to be case insensitive

SVN revision: 57914
This commit is contained in:
Vincent Torri 2011-03-20 12:07:03 +00:00
parent 6b2d04c4e0
commit e2ccfee75f
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ strrstr (const char *str, const char *substr)
int strcasecmp(const char *s1, const char *s2)
{
return lstrcmp(s1, s2);
return lstrcmpi(s1, s2);
}
#endif /* _MSC_VER */