From 6a921ca89db398e214b2a85a1e0859407936dfe0 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Mon, 6 Aug 2007 19:24:10 +0000 Subject: [PATCH] * Also unset Content-MD5 in the deflate_out_filter git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@563230 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_deflate.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/filters/mod_deflate.c b/modules/filters/mod_deflate.c index 63a3c1d5e0..98ecd3b72c 100644 --- a/modules/filters/mod_deflate.c +++ b/modules/filters/mod_deflate.c @@ -542,6 +542,7 @@ static apr_status_t deflate_out_filter(ap_filter_t *f, apr_table_mergen(r->headers_out, "Content-Encoding", "gzip"); } apr_table_unset(r->headers_out, "Content-Length"); + apr_table_unset(r->headers_out, "Content-MD5"); /* initialize deflate output buffer */ ctx->stream.next_out = ctx->buffer; -- 2.40.0