[PATCH] httpd: don't send error messages with gzip encoding

Denys Vlasenko vda.linux at googlemail.com
Sun Mar 27 21:26:45 UTC 2011


On Friday 25 March 2011 13:38, Peter Korsgaard wrote:
> If CONFIG_FEATURE_HTTPD_GZIP is enabled and request contained
> 'Accept-Encoding: gzip', then errors were sent with 'Content-Encoding: gzip'
> even though they aren't.
> 
> Fix it by clearing content_gzip before sending the headers.
> 
> Signed-off-by: Peter Korsgaard <jacmet at sunsite.dk>
> ---
>  networking/httpd.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/networking/httpd.c b/networking/httpd.c
> index b8113a8..9c1aa2a 100644
> --- a/networking/httpd.c
> +++ b/networking/httpd.c
> @@ -1065,6 +1065,7 @@ static void send_headers(int responseNum)
>  static void send_headers_and_exit(int responseNum) NORETURN;
>  static void send_headers_and_exit(int responseNum)
>  {
> +	IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
>  	send_headers(responseNum);
>  	log_and_exit();
>  }

Applied, thanks!
-- 
vda


More information about the busybox mailing list