Author: mturk
Date: Fri Aug 25 00:29:12 2006
New Revision: 436693

URL: http://svn.apache.org/viewvc?rev=436693&view=rev
Log:
Make log_level directive also as not mandatory.
We will use default log_level instead if not defined.

Modified:
    tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c

Modified: tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c?rev=436693&r1=436692&r2=436693&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c (original)
+++ tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c Fri Aug 25 00:29:12 
2006
@@ -1306,9 +1306,6 @@
         if (tmp) {
             log_level = jk_parse_log_level(tmp);
         }
-        else {
-            log_level = JK_LOG_DEF_LEVEL;
-        }
         tmp = jk_map_get_string(map, EXTENSION_URI_TAG, NULL);
         if (tmp) {
             strcpy(extension_uri, tmp);
@@ -1366,9 +1363,6 @@
                                           JK_LOG_LEVEL_TAG,
                                           tmpbuf, sizeof(tmpbuf))) {
             log_level = jk_parse_log_level(tmpbuf);
-        }
-        else {
-            log_level = JK_LOG_DEF_LEVEL;
         }
 
         if (get_registry_config_parameter(hkey,



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to