summaryrefslogtreecommitdiff
path: root/indra/llmessage/llcurl.cpp
diff options
context:
space:
mode:
authorTofu Buzzard <no-email>2011-02-04 21:11:33 -0800
committerTofu Buzzard <no-email>2011-02-04 21:11:33 -0800
commit36feb9d5a467453763c1f4b41b1779ea711c410f (patch)
tree5f82bb0c0ef1b8acd761ceb83f722f58c4668b20 /indra/llmessage/llcurl.cpp
parent3c8e91c71673e02bc56b0322bb0ea8026a51d332 (diff)
parent3f77074f27ed96ee817e00d026145942da9a1ecb (diff)
merge
Diffstat (limited to 'indra/llmessage/llcurl.cpp')
-rw-r--r--indra/llmessage/llcurl.cpp18
1 files changed, 4 insertions, 14 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp
index 6473b23e80..2b9bfff536 100644
--- a/indra/llmessage/llcurl.cpp
+++ b/indra/llmessage/llcurl.cpp
@@ -90,13 +90,8 @@ void check_curl_code(CURLcode code)
if (code != CURLE_OK)
{
// linux appears to throw a curl error once per session for a bad initialization
- // at a pretty random time (when enabling cookies). Making curl errors non-asserts
- // for non-windows platforms for now. - Nyx
- #if LL_WINDOWS
- llerrs << "curl error detected: " << curl_easy_strerror(code) << llendl;
- #else
- llinfos << "curl error detected: " << curl_easy_strerror(code) << llendl;
- #endif
+ // at a pretty random time (when enabling cookies).
+ llinfos << "curl error detected: " << curl_easy_strerror(code) << llendl;
}
}
@@ -105,13 +100,8 @@ void check_curl_multi_code(CURLMcode code)
if (code != CURLM_OK)
{
// linux appears to throw a curl error once per session for a bad initialization
- // at a pretty random time (when enabling cookies). Making curl errors non-asserts
- // for non-windows platforms for now. - Nyx
- #if LL_WINDOWS
- llerrs << "curl multi error detected: " << curl_multi_strerror(code) << llendl;
- #else
- llinfos << "curl multi error detected: " << curl_multi_strerror(code) << llendl;
- #endif
+ // at a pretty random time (when enabling cookies).
+ llinfos << "curl multi error detected: " << curl_multi_strerror(code) << llendl;
}
}