From: mturk Date: Tue, 2 Mar 2010 11:48:02 +0000 (+0000) Subject: Fix typo X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=3406a080a18eac6b83fbf3128ec41cdfe79ce5f7;p=tomcat7.0 Fix typo git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@917978 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/tomcat/util/net/AprEndpoint.java b/java/org/apache/tomcat/util/net/AprEndpoint.java index 82e5d4e6f..3c2e5c214 100644 --- a/java/org/apache/tomcat/util/net/AprEndpoint.java +++ b/java/org/apache/tomcat/util/net/AprEndpoint.java @@ -314,7 +314,7 @@ public class AprEndpoint extends AbstractEndpoint { * support the secure renegotiation. */ protected boolean SSLInsecureRenegotiation = false; - public void seSSLInsecureRenegotiation(boolean SSLInsecureRenegotiation) { this.SSLInsecureRenegotiation = SSLInsecureRenegotiation; } + public void setSSLInsecureRenegotiation(boolean SSLInsecureRenegotiation) { this.SSLInsecureRenegotiation = SSLInsecureRenegotiation; } public boolean getSSLInsecureRenegotiation() { return SSLInsecureRenegotiation; } // --------------------------------------------------------- Public Methods