]> granicus.if.org Git - apache/commitdiff
* Also unset Content-MD5 in the deflate_out_filter
authorRuediger Pluem <rpluem@apache.org>
Mon, 6 Aug 2007 19:24:10 +0000 (19:24 +0000)
committerRuediger Pluem <rpluem@apache.org>
Mon, 6 Aug 2007 19:24:10 +0000 (19:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@563230 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_deflate.c

index 63a3c1d5e09afaa19f029e415430aff8a836b003..98ecd3b72c3f9e70d91a8205706d6b7390a021f8 100644 (file)
@@ -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;