akosut 98/07/18 22:55:17
Modified: src/main http_protocol.c
Log:
Make it stop! We've had *nine* PRs on this. Obviously it's causing
certain people distress.
PR: 267, 517, 1332, 1537, 1819, 2050, 2347, 2528, 2642
Revision Changes Path
1.225 +2 -1 apache-1.3/src/main/http_protocol.c
Index: http_protocol.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_protocol.c,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -u -r1.224 -r1.225
--- http_protocol.c 1998/07/08 17:47:05 1.224
+++ http_protocol.c 1998/07/19 05:55:16 1.225
@@ -299,7 +299,8 @@
ap_find_last_token(r->pool,
ap_table_get(r->headers_out, "Transfer-Encoding"),
"chunked") ||
- ((r->proto_num >= HTTP_VERSION(1,1)) && (r->chunked = 1))) &&
+ ((r->proto_num >= HTTP_VERSION(1,1)) &&
+ (r->chunked = 1))) && /* THIS CODE IS CORRECT, see comment above. */
r->server->keep_alive &&
(r->server->keep_alive_timeout > 0) &&
((r->server->keep_alive_max == 0) ||