summaryrefslogtreecommitdiffstats
path: root/src/StringUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/StringUtils.cpp')
-rw-r--r--src/StringUtils.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/StringUtils.cpp b/src/StringUtils.cpp
index 4ff556277..42d736a8c 100644
--- a/src/StringUtils.cpp
+++ b/src/StringUtils.cpp
@@ -329,11 +329,9 @@ AString StrToUpper(const AString & s)
int NoCaseCompare(const AString & s1, const AString & s2)
{
#ifdef _MSC_VER
- // MSVC has stricmp that compares case-insensitive:
return _stricmp(s1.c_str(), s2.c_str());
#else
- // Do it the hard way - convert both strings to lowercase:
- return StrToLower(s1).compare(StrToLower(s2));
+ return strcasecmp(s1.c_str(), s2.c_str());
#endif // else _MSC_VER
}