From: rjung
Date: Sun, 18 Sep 2011 12:22:39 +0000 (+0000)
Subject: BZ 51811: Fix typo in attribute name
X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d5c9a8864191a4a12f597ff9d603ce7d2d9192c1;p=tomcat7.0
BZ 51811: Fix typo in attribute name
(sslImplementationName instead of
sslImplemenationName).
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1172269 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/java/org/apache/coyote/http11/AbstractHttp11JsseProtocol.java b/java/org/apache/coyote/http11/AbstractHttp11JsseProtocol.java
index 2f797565b..8cf49f65c 100644
--- a/java/org/apache/coyote/http11/AbstractHttp11JsseProtocol.java
+++ b/java/org/apache/coyote/http11/AbstractHttp11JsseProtocol.java
@@ -103,10 +103,10 @@ public abstract class AbstractHttp11JsseProtocol
return endpoint.getAllowUnsafeLegacyRenegotiation();
}
- private String sslImplemenationName = null;
- public String getSslImplemenationName() { return sslImplemenationName; }
- public void setSslImplemenationName(String s) {
- this.sslImplemenationName = s;
+ private String sslImplementationName = null;
+ public String getSslImplementationName() { return sslImplementationName; }
+ public void setSslImplementationName(String s) {
+ this.sslImplementationName = s;
}
// ------------------------------------------------------- Lifecycle methods
@@ -115,7 +115,7 @@ public abstract class AbstractHttp11JsseProtocol
public void init() throws Exception {
// SSL implementation needs to be in place before end point is
// initialized
- sslImplementation = SSLImplementation.getInstance(sslImplemenationName);
+ sslImplementation = SSLImplementation.getInstance(sslImplementationName);
super.init();
}
}
diff --git a/test/org/apache/tomcat/util/net/TestCustomSsl.java b/test/org/apache/tomcat/util/net/TestCustomSsl.java
index 0cdaf6b9b..ea1071554 100644
--- a/test/org/apache/tomcat/util/net/TestCustomSsl.java
+++ b/test/org/apache/tomcat/util/net/TestCustomSsl.java
@@ -54,7 +54,7 @@ public class TestCustomSsl extends TomcatBaseTest {
return;
}
- connector.setProperty("sslImplemenationName",
+ connector.setProperty("sslImplementationName",
"org.apache.tomcat.util.net.jsse.TesterBug50640SslImpl");
connector.setProperty(TesterBug50640SslImpl.PROPERTY_NAME,
TesterBug50640SslImpl.PROPERTY_VALUE);
diff --git a/webapps/docs/config/http.xml b/webapps/docs/config/http.xml
index 80ae2b1c5..3e34cd36b 100644
--- a/webapps/docs/config/http.xml
+++ b/webapps/docs/config/http.xml
@@ -990,7 +990,7 @@
used.
-
+
The class name of the SSL implementation to use. If not specified, the
default of org.apache.tomcat.util.net.jsse.JSSEImplementation
will be used which wraps JVM's default JSSE provider. Note that the