You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2010/01/05 08:42:27 UTC

svn commit: r895929 - /commons/sandbox/runtime/trunk/src/main/native/shared/string.c

Author: mturk
Date: Tue Jan  5 07:42:26 2010
New Revision: 895929

URL: http://svn.apache.org/viewvc?rev=895929&view=rev
Log:
Fix flag

Modified:
    commons/sandbox/runtime/trunk/src/main/native/shared/string.c

Modified: commons/sandbox/runtime/trunk/src/main/native/shared/string.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/shared/string.c?rev=895929&r1=895928&r2=895929&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/shared/string.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/shared/string.c Tue Jan  5 07:42:26 2010
@@ -1988,7 +1988,7 @@
 
 static int _wcscompare(const void *arg1, const void *arg2)
 {
-#if defined(SOLARIS)
+#if defined(SOLARIS2)
     /* TODO: Implement wcsecasecmp
      */
     return wcscmp(*(wchar_t **)arg1, *(wchar_t **)arg2);