You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2004/05/28 14:07:02 UTC

cvs commit: apache-1.3/src/main http_request.c

jim         2004/05/28 05:07:02

  Modified:    src/main http_request.c
  Log:
  Back out specific fix-case patch which breaks quite a few
  other things...
  
  Revision  Changes    Path
  1.175     +1 -1      apache-1.3/src/main/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_request.c,v
  retrieving revision 1.174
  retrieving revision 1.175
  diff -u -r1.174 -r1.175
  --- http_request.c	28 Apr 2004 16:58:42 -0000	1.174
  +++ http_request.c	28 May 2004 12:07:02 -0000	1.175
  @@ -1056,7 +1056,7 @@
        */
       if ((r->status != HTTP_NOT_MODIFIED) && (r->status != HTTP_NO_CONTENT)
           && !ap_status_drops_connection(r->status)
  -        && r->connection && (r->connection->keepalive > 0)) {
  +        && r->connection && (r->connection->keepalive != -1)) {
   
           (void) ap_discard_request_body(r);
       }