1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-29 01:45:34 +00:00

Prefer gzip.

This commit is contained in:
Witold Filipczyk 2015-08-22 11:22:58 +02:00
parent e015e2be21
commit b4adf0d70d

View File

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