Author: rjung
Date: Sat Sep 27 10:28:15 2008
New Revision: 699695
URL: http://svn.apache.org/viewvc?rev=699695&view=rev
Log:
I assume it should have been an "or" instead of "and".
We don't need it anyways, because not is_inited
is enough reason for failure, and if not is_mapread,
the code above sets is_inited to false also.
Modified:
tomcat/connectors/branches/other/jk_isapi_plugin_chunked/jk/native/iis/jk_isapi_plugin.c
Modified:
tomcat/connectors/branches/other/jk_isapi_plugin_chunked/jk/native/iis/jk_isapi_plugin.c
URL:
http://svn.apache.org/viewvc/tomcat/connectors/branches/other/jk_isapi_plugin_chunked/jk/native/iis/jk_isapi_plugin.c?rev=699695&r1=699694&r2=699695&view=diff
==============================================================================
---
tomcat/connectors/branches/other/jk_isapi_plugin_chunked/jk/native/iis/jk_isapi_plugin.c
(original)
+++
tomcat/connectors/branches/other/jk_isapi_plugin_chunked/jk/native/iis/jk_isapi_plugin.c
Sat Sep 27 10:28:15 2008
@@ -1178,7 +1178,7 @@
if (!is_mapread)
is_inited = JK_FALSE;
}
- if (!is_inited && !is_mapread) {
+ if (!is_inited) {
/* In case the initialization failed
* return error. This will make entire IIS
* unusable like with Apache servers
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]