You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@locus.apache.org on 2000/09/07 01:35:17 UTC

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina Globals.java

craigmcc    00/09/06 16:35:17

  Modified:    catalina/src/share/org/apache/catalina Globals.java
  Log:
  Correct the spelling of the session cookie name.
  
  NOTE:  Be sure you do a complete rebuild (./build.sh clean ; ./build.sh)
  after downloading this class -- just recompiling the one class will not work.
  
  Revision  Changes    Path
  1.3       +5 -5      jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Globals.java
  
  Index: Globals.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Globals.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Globals.java	2000/08/25 02:58:53	1.2
  +++ Globals.java	2000/09/06 23:35:17	1.3
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Globals.java,v 1.2 2000/08/25 02:58:53 craigmcc Exp $
  - * $Revision: 1.2 $
  - * $Date: 2000/08/25 02:58:53 $
  + * $Header: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Globals.java,v 1.3 2000/09/06 23:35:17 craigmcc Exp $
  + * $Revision: 1.3 $
  + * $Date: 2000/09/06 23:35:17 $
    *
    * ====================================================================
    *
  @@ -69,7 +69,7 @@
    * Global constants that are applicable to multiple packages within Catalina.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.2 $ $Date: 2000/08/25 02:58:53 $
  + * @version $Revision: 1.3 $ $Date: 2000/09/06 23:35:17 $
    */
   
   public final class Globals {
  @@ -119,7 +119,7 @@
        * The name of the cookie used to pass the session identifier back
        * and forth with the client.
        */
  -    public static final String SESSION_COOKIE_NAME = "JSESSSIONID";
  +    public static final String SESSION_COOKIE_NAME = "JSESSIONID";
   
   
       /**