pier        01/10/19 12:18:28

  Modified:    webapp/java WarpRequest.java
  Log:
  Fix for bug # 3534.
  
  Revision  Changes    Path
  1.10      +1 -1      jakarta-tomcat-connectors/webapp/java/WarpRequest.java
  
  Index: WarpRequest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/java/WarpRequest.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- WarpRequest.java  2001/07/25 22:32:05     1.9
  +++ WarpRequest.java  2001/10/19 19:18:28     1.10
  @@ -139,7 +139,7 @@
                   throw new IOException("Invalid WARP packet type for body");
   
               if (this.packet.pointer<this.packet.size)
  -                return((int)this.packet.buffer[this.packet.pointer++]);
  +                return(((int)this.packet.buffer[this.packet.pointer++])&0x0ff);
   
               this.packet.reset();
               this.packet.setType(Constants.TYPE_CBK_READ);
  
  
  


Reply via email to