From 214a34032fedd8b1755ffc28ae415da49f1f3e12 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 d7a7e2a9d4..0425a78df0 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.40.0