From 5e1ddf19bc3cca3697572bf1d6496e4f81dd6139 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Fri, 28 May 2004 12:07:02 +0000 Subject: [PATCH] Back out specific fix-case patch which breaks quite a few 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/http_request.c b/src/main/http_request.c index c1ccea74039..ef4ed74a7e6 100644 --- a/src/main/http_request.c +++ b/src/main/http_request.c @@ -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); } -- 2.47.2