nacho 00/12/16 18:37:56 Modified: src/share/org/apache/tomcat/modules/server Ajp12.java Ajp12Interceptor.java Log: a Typo Revision Changes Path 1.9 +3 -3 jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp12.java Index: Ajp12.java =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp12.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- Ajp12.java 2000/12/03 22:29:38 1.8 +++ Ajp12.java 2000/12/17 02:37:55 1.9 @@ -75,7 +75,7 @@ Socket socket; InputStream sin; BufferedInputStream ajpin; - private boolean TomcatAuthentication=true; + private boolean tomcatAuthentication=true; boolean shutdown=false; boolean isPing=false; boolean doLog; @@ -370,11 +370,11 @@ } public boolean isTomcatAuthentication() { - return TomcatAuthentication; + return tomcatAuthentication; } public void setTomcatAuthentication(boolean newTomcatAuthentication) { - TomcatAuthentication = newTomcatAuthentication; + tomcatAuthentication = newTomcatAuthentication; } 1.7 +4 -4 jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp12Interceptor.java Index: Ajp12Interceptor.java =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp12Interceptor.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- Ajp12Interceptor.java 2000/12/03 22:29:38 1.6 +++ Ajp12Interceptor.java 2000/12/17 02:37:55 1.7 @@ -76,7 +76,7 @@ */ public class Ajp12Interceptor extends PoolTcpConnector implements TcpConnectionHandler{ - private boolean TomcatAuthentication=true; + private boolean tomcatAuthentication=true; public Ajp12Interceptor() { super(); } @@ -125,7 +125,7 @@ resA=(AJP12Response)thData[1]; if( reqA!=null ) reqA.recycle(); if( resA!=null ) resA.recycle(); -//XXX Need to revert the tomcat auth state? if yes put it into recycle and +//XXX is needed to revert the tomcat auth state? if yes put it into recycle and // and uncomment here // ((AJP12Request)reqA).setTomcatAuthentication(isTomcatAuthtentication()); } @@ -154,11 +154,11 @@ } public boolean isTomcatAuthentication() { - return TomcatAuthentication; + return tomcatAuthentication; } public void setTomcatAuthentication(boolean newTomcatAuthentication) { - TomcatAuthentication = newTomcatAuthentication; + tomcatAuthentication = newTomcatAuthentication; } }