From 7dc89fcc4e599e3949f532ba24ce9fd38d01b154 Mon Sep 17 00:00:00 2001
From: Jeff Trawick <trawick@apache.org>
Date: Mon, 10 Jan 2011 21:21:45 +0000
Subject: [PATCH] comment on where multiple headers with same name get merged

(some strict Cookie parsers can't handle what happens later,
but that is not our fault)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1057372 13f79535-47bb-0310-9956-ffa450edef68
---
 server/protocol.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/server/protocol.c b/server/protocol.c
index 182c5b1cec..be9d183932 100644
--- a/server/protocol.c
+++ b/server/protocol.c
@@ -846,6 +846,9 @@ AP_DECLARE(void) ap_get_mime_headers_core(request_rec *r, apr_bucket_brigade *bb
         }
     }
 
+    /* Combine multiple message-header fields with the same
+     * field-name, following RFC 2616, 4.2.
+     */
     apr_table_compress(r->headers_in, APR_OVERLAP_TABLES_MERGE);
 }
 
-- 
2.40.0