1
0
Fork 0

[encoding] Do not announce "deflate" as supported encoding method

This commit is contained in:
Witold Filipczyk 2019-12-22 11:30:12 +01:00
parent 3db5c51b8d
commit e4220c0301
1 changed files with 1 additions and 1 deletions

View File

@ -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