diff options
author | Nyx Linden <nyx@lindenlab.com> | 2013-04-08 17:03:24 -0400 |
---|---|---|
committer | Nyx Linden <nyx@lindenlab.com> | 2013-04-08 17:03:24 -0400 |
commit | b4c60f430332674e5dbdb672152e62d252e9a6e1 (patch) | |
tree | c9fb6805638fc95ea0ca2c3ef28a41e915ad7f18 /indra/llmessage/llhttpclientadapter.cpp | |
parent | 3e53ade13e7c9e70ba67a1e845696712081f7651 (diff) | |
parent | beeefb45269f45ea717f58b30a0985951ae23c20 (diff) |
merge. pulled in sunshine-stable.
Diffstat (limited to 'indra/llmessage/llhttpclientadapter.cpp')
-rw-r--r-- | indra/llmessage/llhttpclientadapter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llmessage/llhttpclientadapter.cpp b/indra/llmessage/llhttpclientadapter.cpp index aaa31e36fc..b56a804f94 100644 --- a/indra/llmessage/llhttpclientadapter.cpp +++ b/indra/llmessage/llhttpclientadapter.cpp @@ -36,17 +36,17 @@ void LLHTTPClientAdapter::get(const std::string& url, LLCurl::ResponderPtr respo LLSD empty_pragma_header; // Pragma is required to stop curl adding "no-cache" // Space is required to stop llurlrequest from turning off proxying - empty_pragma_header[HTTP_HEADER_PRAGMA] = " "; + empty_pragma_header[HTTP_OUT_HEADER_PRAGMA] = " "; LLHTTPClient::get(url, responder, empty_pragma_header); } void LLHTTPClientAdapter::get(const std::string& url, LLCurl::ResponderPtr responder, const LLSD& headers) { LLSD empty_pragma_header = headers; - if (!empty_pragma_header.has(HTTP_HEADER_PRAGMA)) + if (!empty_pragma_header.has(HTTP_OUT_HEADER_PRAGMA)) { // as above - empty_pragma_header[HTTP_HEADER_PRAGMA] = " "; + empty_pragma_header[HTTP_OUT_HEADER_PRAGMA] = " "; } LLHTTPClient::get(url, responder, empty_pragma_header); } |