aboutsummaryrefslogtreecommitdiff
path: root/src/IO/http.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-04-26 18:11:26 +0200
committerjcid <devnull@localhost>2008-04-26 18:11:26 +0200
commitd1313e863eb6098b808545c7c776881597e85761 (patch)
tree934f7a5a27f2cf56318b069c2568ba50e4fe6f81 /src/IO/http.c
parent7cdc414db9c902a5087ebd4171077d44c8087eca (diff)
- Changed the Accept-Charset string.
Diffstat (limited to 'src/IO/http.c')
-rw-r--r--src/IO/http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IO/http.c b/src/IO/http.c
index 00ccc0e6..702fc23c 100644
--- a/src/IO/http.c
+++ b/src/IO/http.c
@@ -236,7 +236,7 @@ Dstr *a_Http_make_query_str(const DilloUrl *url, bool_t use_proxy)
query,
"POST %s HTTP/1.1\r\n"
"Connection: close\r\n"
- "Accept-Charset: utf-8, iso-8859-1\r\n"
+ "Accept-Charset: utf-8,*;q=0.8\r\n"
"Accept-Encoding: gzip\r\n"
"Host: %s%s\r\n"
"%s"
@@ -258,7 +258,7 @@ Dstr *a_Http_make_query_str(const DilloUrl *url, bool_t use_proxy)
"GET %s HTTP/1.1\r\n"
"%s"
"Connection: close\r\n"
- "Accept-Charset: utf-8, iso-8859-1\r\n"
+ "Accept-Charset: utf-8,*;q=0.8\r\n"
"Accept-Encoding: gzip\r\n"
"Host: %s%s\r\n"
"%s"