* List of headers that must not be updated on a 304 (or 206 partial content)
* https://tools.ietf.org/id/draft-ietf-httpbis-cache-08.txt
*/
- apr_table_unset(r->headers_out, "Content_Encoding");
- apr_table_unset(r->headers_out, "Content_Length");
- apr_table_unset(r->headers_out, "Content_MD5");
- apr_table_unset(r->headers_out, "Content_Range");
+ apr_table_unset(r->headers_out, "Content-Encoding");
+ apr_table_unset(r->headers_out, "Content-Length");
+ apr_table_unset(r->headers_out, "Content-MD5");
+ apr_table_unset(r->headers_out, "Content-Range");
apr_table_unset(r->headers_out, "ETag");
apr_table_unset(r->headers_out, "TE");
apr_table_unset(r->headers_out, "Trailer");
- apr_table_unset(r->headers_out, "Transfer_Encoding");
+ apr_table_unset(r->headers_out, "Transfer-Encoding");
apr_table_unset(r->headers_out, "Upgrade");
}
send_all_header_fields(&h, r);