diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-24 07:49:26 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-24 07:49:26 +0100 |
commit | 87d0c6d583c90ac2f3292be9f71a13648c7d0842 (patch) | |
tree | 4fcc803b08b636491e7bf5a0c8270a7c3c36ac36 /indra/llmessage/llcurl.cpp | |
parent | 9dada6bcc42dff7d7c6e17b7e65a6841b14b405b (diff) |
Backed out changeset 57e00f7d4d4f
(was: EXT-7145: FIXED: make viewer to handle "URL redirect " for http texture.)
This was causing osx/linux build failure.
Diffstat (limited to 'indra/llmessage/llcurl.cpp')
-rw-r--r-- | indra/llmessage/llcurl.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp index 36874a5d48..91e11b8c0d 100644 --- a/indra/llmessage/llcurl.cpp +++ b/indra/llmessage/llcurl.cpp @@ -365,13 +365,6 @@ U32 LLCurl::Easy::report(CURLcode code) responseReason = strerror(code) + " : " + mErrorBuffer; } - if(responseCode >= 300 && responseCode < 400) //redirect - { - char new_url[512] ; - curl_easy_getinfo(mCurlEasyHandle, CURLINFO_REDIRECT_URL, new_url); - responseReason = new_url ; //get the new URL. - } - if (mResponder) { mResponder->completedRaw(responseCode, responseReason, mChannels, mOutput); |