]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Back out specific fix-case patch which breaks quite a few
authorJim Jagielski <jim@apache.org>
Fri, 28 May 2004 12:07:02 +0000 (12:07 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 28 May 2004 12:07:02 +0000 (12:07 +0000)
other things...

PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@103798 13f79535-47bb-0310-9956-ffa450edef68

src/main/http_request.c

index c1ccea74039500971bf8575c687afbe71f04e78f..ef4ed74a7e68c2054725240664634b453a39d310 100644 (file)
@@ -1056,7 +1056,7 @@ API_EXPORT(void) ap_die(int type, request_rec *r)
      */
     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);
     }