From dcacbdd84e5b809411f45880cc0c1d441b25d55e Mon Sep 17 00:00:00 2001 From: jfclere Date: Thu, 17 Jun 2010 09:41:19 +0000 Subject: [PATCH] Typo in previous fix for 44285 git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@955527 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/coyote/http11/AbstractHttp11Protocol.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.11.0