From 32995b78c5848fe7748f1622d6e8cc5c3bd593cd Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 18 Feb 2014 00:49:32 -0800 Subject: [PATCH] Client: "Accept-Language", not "ACCEPT_LANGUAGE", in HTTP --- client/http_curl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/http_curl.cpp b/client/http_curl.cpp index a2a49bd348..1fb22ec85a 100644 --- a/client/http_curl.cpp +++ b/client/http_curl.cpp @@ -594,7 +594,7 @@ int HTTP_OP::libcurl_exec( pcurlList = curl_slist_append(pcurlList, g_content_type); if (strlen(gstate.language)) { - sprintf(buf, "ACCEPT_LANGUAGE: %s", gstate.language); + sprintf(buf, "Accept-Language: %s", gstate.language); pcurlList = curl_slist_append(pcurlList, buf); }