summaryrefslogtreecommitdiff
path: root/www/apache2/patches/patch-af
diff options
context:
space:
mode:
Diffstat (limited to 'www/apache2/patches/patch-af')
-rw-r--r--www/apache2/patches/patch-af20
1 files changed, 0 insertions, 20 deletions
diff --git a/www/apache2/patches/patch-af b/www/apache2/patches/patch-af
deleted file mode 100644
index fef7cf4b529..00000000000
--- a/www/apache2/patches/patch-af
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-af,v 1.4 2005/08/08 18:30:26 tron Exp $
-
---- server/protocol.c.orig 2005/07/14 16:49:17 219060
-+++ server/protocol.c 2005/07/14 16:51:55 219061
-@@ -885,6 +885,15 @@
- apr_brigade_destroy(tmp_bb);
- return r;
- }
-+
-+ if (apr_table_get(r->headers_in, "Transfer-Encoding")
-+ && apr_table_get(r->headers_in, "Content-Length")) {
-+ /* 2616 section 4.4, point 3: "if both Transfer-Encoding
-+ * and Content-Length are received, the latter MUST be
-+ * ignored"; so unset it here to prevent any confusion
-+ * later. */
-+ apr_table_unset(r->headers_in, "Content-Length");
-+ }
- }
- else {
- if (r->header_only) {