summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-22 15:32:27 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-06-22 15:32:27 (GMT)
commit24ec7f5c3cb52d7cfead429e88b5d063c1c9933c (patch)
treed527ebd5720caab4cba1f31e5189df78c4b39f50 /Source/cmMakefile.cxx
parent1203dca687347deb1a7bb4b360e9b50d7d576943 (diff)
downloadCMake-24ec7f5c3cb52d7cfead429e88b5d063c1c9933c.zip
CMake-24ec7f5c3cb52d7cfead429e88b5d063c1c9933c.tar.gz
CMake-24ec7f5c3cb52d7cfead429e88b5d063c1c9933c.tar.bz2
removed stricmp
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 210007b..b6d4c4f 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -418,7 +418,7 @@ struct FindSrcByName : std::binary_function<cmSourceFile, cmSourceFile, bool>
public:
bool operator () (const cmSourceFile &f, const cmSourceFile &test) const
{
- return !stricmp(f.GetSourceName().c_str(),test.GetSourceName().c_str());
+ return !strcmp(f.GetSourceName().c_str(),test.GetSourceName().c_str());
}
};