From: jfclere Date: Thu, 17 Jun 2010 09:41:19 +0000 (+0000) Subject: Typo in previous fix for 44285 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=dcacbdd84e5b809411f45880cc0c1d441b25d55e;p=tomcat7.0 Typo in previous fix for 44285 git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@955527 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/http11/AbstractHttp11Protocol.java b/java/org/apache/coyote/http11/AbstractHttp11Protocol.java index a9a306842..884dbbb2b 100644 --- a/java/org/apache/coyote/http11/AbstractHttp11Protocol.java +++ b/java/org/apache/coyote/http11/AbstractHttp11Protocol.java @@ -379,10 +379,10 @@ public abstract class AbstractHttp11Protocol implements ProtocolHandler, MBeanRe public String getCrlFile(){ return endpoint.getCrlFile();} public void setSessionCacheSize(String s){endpoint.setSessionCacheSize(s);} - public String getSessionCacheSize(){ return endpoint.getTruststoreAlgorithm();} + public String getSessionCacheSize(){ return endpoint.getSessionCacheSize();} - public void setSessionTimeout(String s){endpoint.setTruststoreAlgorithm(s);} - public String getSessionTimeout(){ return endpoint.getTruststoreAlgorithm();} + public void setSessionTimeout(String s){endpoint.setSessionTimeout(s);} + public String getSessionTimeout(){ return endpoint.getSessionTimeout();} public void setAllowUnsafeLegacyRenegotiation(String s) { endpoint.setAllowUnsafeLegacyRenegotiation(s);