From: Eric Covener Date: Fri, 11 Apr 2014 02:44:23 +0000 (+0000) Subject: be explicit, for now the 0 val is the default, but it's X-Git-Tag: 2.5.0-alpha~4325 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cd0b69c2d5c1b989a070ae55072a781bbed477d;p=apache be explicit, for now the 0 val is the default, but it's a likely candidate for someone to flip later. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1586543 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_deflate.c b/modules/filters/mod_deflate.c index 55fe883501..2d4544a676 100644 --- a/modules/filters/mod_deflate.c +++ b/modules/filters/mod_deflate.c @@ -207,6 +207,7 @@ static void *create_deflate_server_config(apr_pool_t *p, server_rec *s) c->windowSize = DEFAULT_WINDOWSIZE; c->bufferSize = DEFAULT_BUFFERSIZE; c->compressionlevel = DEFAULT_COMPRESSION; + c->etag_opt = AP_DEFLATE_ETAG_ADDSUFFIX; return c; }