costin      00/12/07 10:40:55

  Modified:    .        changes3.3
               src/share/org/apache/tomcat/core Request.java
  Log:
  - added the changes to the list
  
  - small fix in Request
  
  Revision  Changes    Path
  1.3       +9 -0      jakarta-tomcat/changes3.3
  
  Index: changes3.3
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/changes3.3,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- changes3.3        2000/11/30 22:43:43     1.2
  +++ changes3.3        2000/12/07 18:40:53     1.3
  @@ -1,5 +1,14 @@
   -------------------- CORE --------------------
   
  +- refactoring of MessageBytes
  +
  +- refactoring of AJP1.3 ( Dan Milstein )
  +
  +- merged the improved error handling from 3.2 ( Larry )
  +
  +- refactoring of Cookie handling, faster code, recycle cookies. Proper 
  +implementation of V1 cookies.
  +
   - Only one type of Interceptor - remove the separation between Context/Request
   Interceptor
   
  
  
  
  1.80      +1 -1      jakarta-tomcat/src/share/org/apache/tomcat/core/Request.java
  
  Index: Request.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/core/Request.java,v
  retrieving revision 1.79
  retrieving revision 1.80
  diff -u -r1.79 -r1.80
  --- Request.java      2000/12/05 14:02:40     1.79
  +++ Request.java      2000/12/07 18:40:54     1.80
  @@ -396,7 +396,7 @@
           if( contentLength > -1 ) return contentLength;
   
        MessageBytes clB=headers.getValue("content-length");
  -        contentLength = (clB==null) ? -1 : clB.getInt();
  +        contentLength = (clB==null || clB.isNull() ) ? -1 : clB.getInt();
   
        return contentLength;
       }
  
  
  

Reply via email to