(svn r3442) - Fix: Only windows has stricmp. So define strcasecmp to stricmp when using MSVC
authorDarkvater
Thu, 26 Jan 2006 17:32:49 +0000
changeset 2889 ac841003c51e
parent 2888 0972346d11a8
child 2890 7b97d5eff224
(svn r3442) - Fix: Only windows has stricmp. So define strcasecmp to stricmp when using MSVC
network_gui.c
stdafx.h
win32.c
--- a/network_gui.c	Thu Jan 26 17:10:11 2006 +0000
+++ b/network_gui.c	Thu Jan 26 17:32:49 2006 +0000
@@ -115,7 +115,7 @@
 {
 	const NetworkGameList *cmp1 = *(const NetworkGameList**)a;
 	const NetworkGameList *cmp2 = *(const NetworkGameList**)b;
-	int r = stricmp(cmp1->info.server_name, cmp2->info.server_name);
+	int r = strcasecmp(cmp1->info.server_name, cmp2->info.server_name);
 
 	return (_internal_sort_order & 1) ? -r : r;
 }
--- a/stdafx.h	Thu Jan 26 17:10:11 2006 +0000
+++ b/stdafx.h	Thu Jan 26 17:32:49 2006 +0000
@@ -144,6 +144,7 @@
 #  endif
 # endif
 
+# define strcasecmp stricmp
 #endif /* defined(_MSC_VER) */
 
 
--- a/win32.c	Thu Jan 26 17:10:11 2006 +0000
+++ b/win32.c	Thu Jan 26 17:32:49 2006 +0000
@@ -604,13 +604,6 @@
 }
 #endif
 
-#ifndef __MINGW32__
-static inline int strcasecmp(const char* s1, const char* s2)
-{
-	return stricmp(s1, s2);
-}
-#endif
-
 static char *_fios_path;
 static char *_fios_save_path;
 static char *_fios_scn_path;