diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-24 08:02:19 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-24 08:02:19 +0100 |
commit | 557b5f5d0ff718378c224a7aae855ec7075d5eb6 (patch) | |
tree | 38a3e4e79efde90edb91e6fcd9e1d35551df999d /indra/llmessage | |
parent | 156d462339684a6e3992be55af5316cb9c53091f (diff) | |
parent | 08480629e9259f0f74252efc543d0c361809dfbe (diff) |
merge from viewer-public
Diffstat (limited to 'indra/llmessage')
-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); |