gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash/libbase container.cpp


From: Vitaly Alexeev
Subject: [Gnash-commit] gnash/libbase container.cpp
Date: Tue, 08 Aug 2006 11:19:13 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Vitaly Alexeev <alexeev>        06/08/08 11:19:13

Modified files:
        libbase        : container.cpp 

Log message:
        stricmp --> _stricmp

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/container.cpp?cvsroot=gnash&r1=1.8&r2=1.9

Patches:
Index: container.cpp
===================================================================
RCS file: /sources/gnash/gnash/libbase/container.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- container.cpp       6 Aug 2006 02:00:54 -0000       1.8
+++ container.cpp       8 Aug 2006 11:19:13 -0000       1.9
@@ -20,7 +20,7 @@
 #ifdef HAVE_STRCASECMP
 # define STRCASECMP strcasecmp
 #else
-# define STRCASECMP stricmp
+# define STRCASECMP _stricmp
 #endif
 
 void tu_string::append_wide_char(uint16 c)
@@ -180,7 +180,7 @@
 
 /*static*/ int tu_string::stricmp(const char* a, const char* b)
 {
-    return strcasecmp(a, b);
+    return STRCASECMP(a, b);
 }
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]