aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-09 12:46:41 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-09 12:46:41 +0000
commit93e32e6f62c432612ad193bb192c9127f87dd707 (patch)
tree5c8e0c856e134a80482f00521fadfc8932ef0348 /lib
parentf8a5ec1380064649f53dcddc68f01fdf24e5cdbe (diff)
Modified the default HTTP Accept: header to only be Accept: */*
Diffstat (limited to 'lib')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 7e9713d38..09e1fc4c2 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -1230,7 +1230,7 @@ CURLcode Curl_http(struct connectdata *conn)
http->p_pragma = "Pragma: no-cache\r\n";
if(!checkheaders(data, "Accept:"))
- http->p_accept = "Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*\r\n";
+ http->p_accept = "Accept: */*\r\n";
if(( (HTTPREQ_POST == data->set.httpreq) ||
(HTTPREQ_POST_FORM == data->set.httpreq) ||