You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/10/10 08:24:08 UTC

svn commit: r454637 - /webservices/axis2/trunk/c/util/src/string.c

Author: nandika
Date: Mon Oct  9 23:24:07 2006
New Revision: 454637

URL: http://svn.apache.org/viewvc?view=rev&rev=454637
Log:
strncasecmp function changed to axis2_strncasecmp

Modified:
    webservices/axis2/trunk/c/util/src/string.c

Modified: webservices/axis2/trunk/c/util/src/string.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/string.c?view=diff&rev=454637&r1=454636&r2=454637
==============================================================================
--- webservices/axis2/trunk/c/util/src/string.c (original)
+++ webservices/axis2/trunk/c/util/src/string.c Mon Oct  9 23:24:07 2006
@@ -464,7 +464,7 @@
                 if (!(current = *heystack++))
                     return NULL;
             } while (toupper(current) != toupper(start));
-        } while (strncasecmp(heystack, needle, len));
+        } while (axis2_strncasecmp(heystack, needle, len));
         heystack--;
     }
     return (axis2_char_t *)heystack;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org