for already compressed content in mod_deflate.
PR: 19913
Submitted by: Tsuyoshi SASAMOTO <nazonazo@super.win.ne.jp>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99880
13f79535-47bb-0310-9956-
ffa450edef68
[Remove entries to the current 2.0 section below, when backported]
+ *) Add another check for already compressed content in mod_deflate.
+ PR 19913. [Tsuyoshi SASAMOTO <nazonazo@super.win.ne.jp>]
+
*) Add a delete flag to htpasswd.
[Thom May]
encoding = apr_table_get(r->err_headers_out, "Content-Encoding");
}
+ if (r->content_encoding) {
+ encoding = encoding ? apr_pstrcat(r->pool, encoding, ",",
+ r->content_encoding, NULL)
+ : r->content_encoding;
+ }
+
if (encoding) {
const char *tmp = encoding;