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 <[email protected]> --- 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(); } -- 1.7.2.3 _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
