diff options
author | Peter Korsgaard | 2011-03-25 13:38:52 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-03-27 23:26:33 +0200 |
commit | 95755181b828cccaa833d7b8d1d47174b7b360b7 (patch) | |
tree | b6723774a139aff0dd57c3e83b52a6d7889377ee /networking/httpd.c | |
parent | 95f5c52e6f823c710be807fb86c8b2fafec8a334 (diff) | |
download | busybox-95755181b828cccaa833d7b8d1d47174b7b360b7.zip busybox-95755181b828cccaa833d7b8d1d47174b7b360b7.tar.gz |
httpd: don't send error messages with gzip encoding
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@sunsite.dk>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | 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(); } |