[Groonga-commit] groonga/groonga at 60699cf [master] Use _stricmp() instead of stricmp() because stricmp() is deprecated

Back to archive index

susumu.yata null+****@clear*****
Thu Jun 5 11:19:56 JST 2014


susumu.yata	2014-06-05 11:19:56 +0900 (Thu, 05 Jun 2014)

  New Revision: 60699cf1cce533646cab54f651ab1fba0f13f384
  https://github.com/groonga/groonga/commit/60699cf1cce533646cab54f651ab1fba0f13f384

  Message:
    Use _stricmp() instead of stricmp() because stricmp() is deprecated
    
    Redmine: refs #2597

  Modified files:
    lib/groonga_in.h

  Modified: lib/groonga_in.h (+1 -1)
===================================================================
--- lib/groonga_in.h    2014-06-05 11:32:57 +0900 (9d4d658)
+++ lib/groonga_in.h    2014-06-05 11:19:56 +0900 (18218b0)
@@ -132,7 +132,7 @@
 # define fstat(fd, buf) _fstat(fd, buf)
 #endif /* !defined(__GNUC__) && _MSC_VER < 1400 */
 #if !defined(strcasecmp)
-#  define strcasecmp(s1, s2) stricmp(s1, s2)
+# define strcasecmp(s1, s2) _stricmp(s1, s2)
 #endif /* !defined(strcasecmp) */
 
 #ifdef __GNUC__
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index