mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
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>
This commit is contained in:
parent
95f5c52e6f
commit
95755181b8
@ -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) NORETURN;
|
||||||
static void send_headers_and_exit(int responseNum)
|
static void send_headers_and_exit(int responseNum)
|
||||||
{
|
{
|
||||||
|
IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
|
||||||
send_headers(responseNum);
|
send_headers(responseNum);
|
||||||
log_and_exit();
|
log_and_exit();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user