You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2007/04/10 12:03:06 UTC

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

Author: rjung
Date: Tue Apr 10 03:03:05 2007
New Revision: 527077

URL: http://svn.apache.org/viewvc?view=rev&rev=527077
Log:
Fix new option ForwardCertChain -> ForwardSSLCertChain
like it was documented.

Modified:
    tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c
    tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.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=527077&r1=527076&r2=527077
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c Tue Apr 10 03:03:05 2007
@@ -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

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=527077&r1=527076&r2=527077
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Tue Apr 10 03:03:05 2007
@@ -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



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