From: Jeff Trawick Date: Mon, 10 Jan 2011 21:21:45 +0000 (+0000) Subject: comment on where multiple headers with same name get merged X-Git-Tag: 2.3.11~245 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7dc89fcc4e599e3949f532ba24ce9fd38d01b154;p=apache 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 --- 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); }