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 2009/08/12 18:39:00 UTC

svn commit: r803591 - /commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c

Author: mturk
Date: Wed Aug 12 16:38:59 2009
New Revision: 803591

URL: http://svn.apache.org/viewvc?rev=803591&view=rev
Log:
One more stricmp

Modified:
    commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c

Modified: commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c?rev=803591&r1=803590&r2=803591&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c Wed Aug 12 16:38:59 2009
@@ -135,7 +135,7 @@
         if (!strcasecmp(run_test, "all")) {
 
         }
-        else if (!stricmp(run_test, "getenv")) {
+        else if (!strcasecmp(run_test, "getenv")) {
             rv = test_getenv(argc, argv);
         }
     }