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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7541c671f642e3562fca1d6549b53abaf7b3b5bd;p=thirdparty%2Fapache%2Fhttpd.git 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 55fe8835013..2d4544a676e 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; }