summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-05-20 04:14:18 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-05-20 04:14:18 +0000
commit9f5c15c806db1e9aac49579204ed2a2aa69f7c3c (patch)
tree4b756a27713d16da0e559b628b49bceeb74e5054 /win
parentde57b89e968a30481df2e3a05db9611d4b4dd1b3 (diff)
Change the define that defines strcasecmp->stricmp to use _stricmp to suppress an anal warning
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7058 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'win')
-rw-r--r--win/inspircd_win32wrapper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/inspircd_win32wrapper.h b/win/inspircd_win32wrapper.h
index ee3062b78..a28b5d6d7 100644
--- a/win/inspircd_win32wrapper.h
+++ b/win/inspircd_win32wrapper.h
@@ -58,7 +58,7 @@
#include <algorithm>
/* strcasecmp is not defined on windows by default */
-#define strcasecmp stricmp
+#define strcasecmp _stricmp
/* Error macros need to be redirected to winsock error codes */
#define ETIMEDOUT WSAETIMEDOUT