summaryrefslogtreecommitdiff
path: root/stopspam_mod/utilities.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'stopspam_mod/utilities.cpp')
-rw-r--r--stopspam_mod/utilities.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/stopspam_mod/utilities.cpp b/stopspam_mod/utilities.cpp
index 7b95337..c481b85 100644
--- a/stopspam_mod/utilities.cpp
+++ b/stopspam_mod/utilities.cpp
@@ -147,7 +147,7 @@ tstring variables_parse(tstring const &tstrFormat, HANDLE hContact){
// case-insensitive _tcsstr
//by nullbie as i remember...
#define NEWTSTR_ALLOCA(A) (A==NULL)?NULL:_tcscpy((TCHAR*)alloca(sizeof(TCHAR)*(_tcslen(A)+1)),A)
-const int stricmp(const TCHAR *str, const TCHAR *substr)
+const int Stricmp(const TCHAR *str, const TCHAR *substr)
{
TCHAR *str_up = NEWTSTR_ALLOCA(str);
TCHAR *substr_up = NEWTSTR_ALLOCA(substr);