remm        02/03/09 11:18:39

  Modified:    http11/src/java/org/apache/coyote/http11
                        InternalInputBuffer.java
  Log:
  - Fix URI parsing problems.
  
  Revision  Changes    Path
  1.12      +5 -3      
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/InternalInputBuffer.java
  
  Index: InternalInputBuffer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/InternalInputBuffer.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- InternalInputBuffer.java  9 Mar 2002 19:05:35 -0000       1.11
  +++ InternalInputBuffer.java  9 Mar 2002 19:18:39 -0000       1.12
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/InternalInputBuffer.java,v
 1.11 2002/03/09 19:05:35 remm Exp $
  - * $Revision: 1.11 $
  - * $Date: 2002/03/09 19:05:35 $
  + * $Header: 
/home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/InternalInputBuffer.java,v
 1.12 2002/03/09 19:18:39 remm Exp $
  + * $Revision: 1.12 $
  + * $Date: 2002/03/09 19:18:39 $
    *
    * ====================================================================
    *
  @@ -511,6 +511,8 @@
                   if (!fill())
                       throw new EOFException(sm.getString("iib.eof.error"));
               }
  +
  +            ascbuf[pos] = (char) buf[pos];
   
               if (buf[pos] == Constants.SP) {
                   space = true;
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to