From: Ruediger Pluem Date: Mon, 6 Aug 2007 19:24:10 +0000 (+0000) Subject: * Also unset Content-MD5 in the deflate_out_filter X-Git-Tag: 2.3.0~1636 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a921ca89db398e214b2a85a1e0859407936dfe0;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- diff --git a/modules/filters/mod_deflate.c b/modules/filters/mod_deflate.c index 63a3c1d5e09..98ecd3b72c3 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;