Bug 42076

Summary: typo in ForwardSSLCertChain JkOptions
Product: Tomcat Connectors Reporter: Motonobu Ichimura <motonobu>
Component: CommonAssignee: Tomcat Developers Mailing List <dev>
Status: CLOSED FIXED    
Severity: normal    
Priority: P2    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: Linux   

Description Motonobu Ichimura 2007-04-10 02:36:19 UTC
Recently, ForwardSSLCertChain option was added to mod_jk for apache.

Although document and sources' comment indicate ForwardSSLCertChain, but code is
written as ForwardCertChain.

Here is a patch for fixing typo

Index: apache-1.3/mod_jk.c
===================================================================
--- apache-1.3/mod_jk.c (revision 527056)
+++ apache-1.3/mod_jk.c (working copy)
@@ -1738,7 +1738,7 @@
         else if (!strcasecmp(w, "DisableReuse")) {
             opt = JK_OPT_DISABLEREUSE;
         }
-        else if (!strcasecmp(w, "ForwardCertChain")) {
+        else if (!strcasecmp(w, "ForwardSSLCertChain")) {
             opt = JK_OPT_FWDCERTCHAIN;
         }
         else
Index: apache-2.0/mod_jk.c
===================================================================
--- apache-2.0/mod_jk.c (revision 527056)
+++ apache-2.0/mod_jk.c (working copy)
@@ -1771,7 +1771,7 @@
         else if (!strcasecmp(w, "DisableReuse")) {
             opt = JK_OPT_DISABLEREUSE;
         }
-        else if (!strcasecmp(w, "ForwardCertChain")) {
+        else if (!strcasecmp(w, "ForwardSSLCertChain")) {
             opt = JK_OPT_FWDCERTCHAIN;
         }
         else
Comment 1 Rainer Jung 2007-04-10 03:06:42 UTC
This fix will be part of 1.2.22, which is the first release with this new feature.
The release will be done soon.
Thanks for reporting this in time.
Comment 2 Rainer Jung 2008-01-01 16:32:32 UTC
Move a couple of fixed JK issues from resolved to closed.