Client: "Accept-Language", not "ACCEPT_LANGUAGE", in HTTP

This commit is contained in:
David Anderson 2014-02-18 00:49:32 -08:00
parent 0533f82d4a
commit 32995b78c5
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}