From 9bee3115f7c00e1ef459e2e635c7c20ecc365d0c Mon Sep 17 00:00:00 2001 From: Ian Holsman Date: Fri, 30 Aug 2002 16:31:17 +0000 Subject: [PATCH] actuall fix the bug git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96590 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_deflate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/filters/mod_deflate.c b/modules/filters/mod_deflate.c index d7a7e2a9d42..0425a78df06 100644 --- a/modules/filters/mod_deflate.c +++ b/modules/filters/mod_deflate.c @@ -283,8 +283,8 @@ static apr_status_t deflate_out_filter(ap_filter_t *f, "gzip-only-text/html"); if ( env_value && (strcmp(env_value,"1") == 0) ) { ap_remove_output_filter(f); - } - return ap_pass_brigade(f->next, bb); + return ap_pass_brigade(f->next, bb); + } } /* Let's see what our current Content-Encoding is. -- 2.47.3