You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by na...@apache.org on 2002/05/11 03:20:44 UTC

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_requtil.c

nacho       02/05/10 18:20:44

  Modified:    jk/native2/common jk_requtil.c
  Log:
  * Was not reading POST body, reversed a test, JK_OK is now false
  
  Revision  Changes    Path
  1.16      +1 -1      jakarta-tomcat-connectors/jk/native2/common/jk_requtil.c
  
  Index: jk_requtil.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/common/jk_requtil.c,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- jk_requtil.c	9 May 2002 21:12:15 -0000	1.15
  +++ jk_requtil.c	11 May 2002 01:20:44 -0000	1.16
  @@ -436,7 +436,7 @@
   
       while(rdlen < padded_len) {
           unsigned this_time = 0;
  -        if(!s->read(env, s, buf + rdlen, len - rdlen, &this_time)) {
  +        if(s->read(env, s, buf + rdlen, len - rdlen, &this_time)) {
               return -1;
           }
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>