summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-10-17 16:11:04 -0700
committercallum_linden <none@none>2014-10-17 16:11:04 -0700
commit217556cbaa1539db7392371b8b5ba97587341704 (patch)
tree9c5a85669bef037079faedcd86f59e5f80e3b7b9
parent6a15d2d95ddb8dd285c635ff86f3a010c99d406c (diff)
Update to build on Xcode 6.0: remove unused code
-rwxr-xr-xindra/llcorehttp/_httpoprequest.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/indra/llcorehttp/_httpoprequest.cpp b/indra/llcorehttp/_httpoprequest.cpp
index b121312ac0..21fe1a613a 100755
--- a/indra/llcorehttp/_httpoprequest.cpp
+++ b/indra/llcorehttp/_httpoprequest.cpp
@@ -91,7 +91,6 @@ char * os_strltrim(char * str);
void os_strlower(char * str);
// Error testing and reporting for libcurl status codes
-void check_curl_easy_code(CURLcode code);
void check_curl_easy_code(CURLcode code, int curl_setopt_option);
} // end anonymous namespace
@@ -1109,18 +1108,4 @@ void check_curl_easy_code(CURLcode code, int curl_setopt_option)
}
}
-
-void check_curl_easy_code(CURLcode code)
-{
- if (CURLE_OK != code)
- {
- // Comment from old llcurl code which may no longer apply:
- //
- // linux appears to throw a curl error once per session for a bad initialization
- // at a pretty random time (when enabling cookies).
- LL_WARNS("CoreHttp") << "libcurl error detected: " << curl_easy_strerror(code)
- << LL_ENDL;
- }
-}
-
} // end anonymous namespace