Typo in previous fix for 44285
authorjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 17 Jun 2010 09:41:19 +0000 (09:41 +0000)
committerjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 17 Jun 2010 09:41:19 +0000 (09:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@955527 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/AbstractHttp11Protocol.java

index a9a3068..884dbbb 100644 (file)
@@ -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);