summaryrefslogtreecommitdiff
path: root/indra/llmessage/llcurl.cpp
diff options
context:
space:
mode:
authorLogan Dethrow <log@lindenlab.com>2011-09-06 17:33:18 -0400
committerLogan Dethrow <log@lindenlab.com>2011-09-06 17:33:18 -0400
commitf73b795bb709b3060e06b4238ae4dac702f21301 (patch)
treecfa9f024cba431e1f2ac2d93f6735db66ca93d70 /indra/llmessage/llcurl.cpp
parenta8d49f7cf54151bfe03049417d59462688946ae0 (diff)
Renamed LLCurl::check_curl_code() and LLCurl::check_curl_multi_code() to prevent ambiguous name build error.
Diffstat (limited to 'indra/llmessage/llcurl.cpp')
-rw-r--r--indra/llmessage/llcurl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp
index ee85f3bbd7..785d07acb8 100644
--- a/indra/llmessage/llcurl.cpp
+++ b/indra/llmessage/llcurl.cpp
@@ -1215,11 +1215,11 @@ void LLCurl::cleanupClass()
const unsigned int LLCurl::MAX_REDIRECTS = 5;
// Provide access to LLCurl free functions outside of llcurl.cpp without polluting the global namespace.
-void LLCurlFF::check_curl_code(CURLcode code)
+void LLCurlFF::check_easy_code(CURLcode code)
{
check_curl_code(code);
}
-void LLCurlFF::check_curl_multi_code(CURLMcode code)
+void LLCurlFF::check_multi_code(CURLMcode code)
{
check_curl_multi_code(code);
}