You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2007/03/20 09:58:28 UTC

svn commit: r520337 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c iis/jk_isapi_plugin.c

Author: mturk
Date: Tue Mar 20 01:58:24 2007
New Revision: 520337

URL: http://svn.apache.org/viewvc?view=rev&rev=520337
Log:
JK_EXPOSED_VERSION already contains mod_jk string.

Modified:
    tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c
    tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c
    tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c

Modified: tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c?view=diff&rev=520337&r1=520336&r2=520337
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c Tue Mar 20 01:58:24 2007
@@ -2616,7 +2616,7 @@
         /* Tell apache we're here */
         ap_add_version_component(JK_EXPOSED_VERSION);
         jk_log(conf->log, JK_LOG_INFO,
-               "mod_jk (%s) initialized",
+               "%s initialized",
                JK_EXPOSED_VERSION);
 #endif
         return;

Modified: tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c?view=diff&rev=520337&r1=520336&r2=520337
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Tue Mar 20 01:58:24 2007
@@ -2737,7 +2737,7 @@
     if (wc_open(init_map, &worker_env, conf->log)) {
         ap_add_version_component(pconf, JK_EXPOSED_VERSION);
         jk_log(conf->log, JK_LOG_INFO,
-               "mod_jk (%s) initialized",
+               "%s initialized",
                JK_EXPOSED_VERSION);
     }
     else {

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?view=diff&rev=520337&r1=520336&r2=520337
==============================================================================
--- tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c (original)
+++ tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c Tue Mar 20 01:58:24 2007
@@ -1341,7 +1341,11 @@
             }
         }
     }
-
+    if (rc) {
+        jk_log(logger, JK_LOG_INFO,
+               "isapi_redirect/%s initialized",
+               JK_VERSTRING);
+    }
     return rc;
 }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org