Author: rjung
Date: Mon Oct 24 16:54:05 2011
New Revision: 1188226
URL: http://svn.apache.org/viewvc?rev=1188226&view=rev
Log:
Fix bug introduced by r1187916 (case insensitive
comparison switched to case sensitive).
Modified:
tomcat/jk/trunk/native/iis/jk_isapi_plugin.c
Modified: tomcat/jk/trunk/native/iis/jk_isapi_plugin.c
URL:
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/iis/jk_isapi_plugin.c?rev=1188226&r1=1188225&r2=1188226&view=diff
==============================================================================
--- tomcat/jk/trunk/native/iis/jk_isapi_plugin.c (original)
+++ tomcat/jk/trunk/native/iis/jk_isapi_plugin.c Mon Oct 24 16:54:05 2011
@@ -851,7 +851,7 @@ static const char *find_path_in_uri(cons
size_t len = strlen(path);
while (uri = strchr(uri, '/')) {
uri++;
- if (!strncmp(uri, path, len) &&
+ if (!strnicmp(uri, path, len) &&
(*(uri + len) == '/' ||
strlen(uri) == len)) {
return uri;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]