1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[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

View File

@ -612,7 +612,7 @@ accept_encoding_header(struct string *header)
#ifdef CONFIG_GZIP #ifdef CONFIG_GZIP
if (comma) add_to_string(header, ", "); if (comma) add_to_string(header, ", ");
add_to_string(header, "gzip, deflate"); add_to_string(header, "gzip");
comma = 1; comma = 1;
#endif #endif