From e4220c030170de8bb38e46ecd6e88bd85d06fff9 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 22 Dec 2019 11:30:12 +0100 Subject: [PATCH] [encoding] Do not announce "deflate" as supported encoding method --- src/protocol/http/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/http/http.c b/src/protocol/http/http.c index bd2d5a5f..19725a31 100644 --- a/src/protocol/http/http.c +++ b/src/protocol/http/http.c @@ -612,7 +612,7 @@ accept_encoding_header(struct string *header) #ifdef CONFIG_GZIP if (comma) add_to_string(header, ", "); - add_to_string(header, "gzip, deflate"); + add_to_string(header, "gzip"); comma = 1; #endif