From 24ec7f5c3cb52d7cfead429e88b5d063c1c9933c Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Fri, 22 Jun 2001 11:32:27 -0400 Subject: [PATCH] removed stricmp --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 210007b75..b6d4c4fae 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -418,7 +418,7 @@ struct FindSrcByName : std::binary_function 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()); } };