diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2004-10-12 04:06:32 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2004-10-12 04:06:32 +0000 |
commit | d4b9b686e1c69125d0bc45f38a101896419380da (patch) | |
tree | b54dfa28bebf093d2bdc6b9eeeff08ba9301aa48 /www/apache13-modssl/files/patch-http_request.c | |
parent | update to 0.93. (diff) |
- Patch for keepalive-bug
PR: 71961
Submitted by: Kenneth Vestergaard Schmidt
Notes
Notes:
svn path=/head/; revision=118762
Diffstat (limited to 'www/apache13-modssl/files/patch-http_request.c')
-rw-r--r-- | www/apache13-modssl/files/patch-http_request.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/apache13-modssl/files/patch-http_request.c b/www/apache13-modssl/files/patch-http_request.c new file mode 100644 index 000000000000..e4642e4f2d27 --- /dev/null +++ b/www/apache13-modssl/files/patch-http_request.c @@ -0,0 +1,11 @@ +--- src/main/http_request.c.bak Wed Apr 28 20:58:42 2004 ++++ src/main/http_request.c Mon Jun 14 17:11:06 2004 +@@ -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); + } |