Bug 42076 - typo in ForwardSSLCertChain JkOptions
Summary: typo in ForwardSSLCertChain JkOptions
Status: CLOSED FIXED
Alias: None
Product: Tomcat Connectors
Classification: Unclassified
Component: Common (show other bugs)
Version: unspecified
Hardware: All Linux
: P2 normal (vote)
Target Milestone: ---
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-10 02:36 UTC by Motonobu Ichimura
Modified: 2008-10-05 03:10 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.