aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llxmlrpctransaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llxmlrpctransaction.cpp')
-rw-r--r--linden/indra/newview/llxmlrpctransaction.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/linden/indra/newview/llxmlrpctransaction.cpp b/linden/indra/newview/llxmlrpctransaction.cpp
index 9b8a872..d84f5c6 100644
--- a/linden/indra/newview/llxmlrpctransaction.cpp
+++ b/linden/indra/newview/llxmlrpctransaction.cpp
@@ -155,7 +155,7 @@ public:
155 std::string mStatusMessage; 155 std::string mStatusMessage;
156 std::string mStatusURI; 156 std::string mStatusURI;
157 157
158 char mCurlErrorBuffer[CURL_ERROR_SIZE]; 158 char mCurlErrorBuffer[CURL_ERROR_SIZE]; /* Flawfinder: ignore */
159 159
160 std::string mURI; 160 std::string mURI;
161 char* mRequestText; 161 char* mRequestText;
@@ -343,9 +343,9 @@ bool LLXMLRPCTransaction::Impl::process()
343 if (curl_msg->data.result != CURLE_OK) 343 if (curl_msg->data.result != CURLE_OK)
344 { 344 {
345 setCurlStatus(curl_msg->data.result); 345 setCurlStatus(curl_msg->data.result);
346 llalerts << "LLXMLRPCTransaction CURL error " 346 llwarns << "LLXMLRPCTransaction CURL error "
347 << mCurlCode << ": " << mCurlErrorBuffer << llendl; 347 << mCurlCode << ": " << mCurlErrorBuffer << llendl;
348 llalerts << "LLXMLRPCTransaction request URI: " 348 llwarns << "LLXMLRPCTransaction request URI: "
349 << mURI << llendl; 349 << mURI << llendl;
350 350
351 return true; 351 return true;
@@ -379,11 +379,11 @@ bool LLXMLRPCTransaction::Impl::process()
379 { 379 {
380 setStatus(LLXMLRPCTransaction::StatusXMLRPCError); 380 setStatus(LLXMLRPCTransaction::StatusXMLRPCError);
381 381
382 llalerts << "LLXMLRPCTransaction XMLRPC " 382 llwarns << "LLXMLRPCTransaction XMLRPC "
383 << (hasError ? "error " : "fault ") 383 << (hasError ? "error " : "fault ")
384 << faultCode << ": " 384 << faultCode << ": "
385 << faultString << llendl; 385 << faultString << llendl;
386 llalerts << "LLXMLRPCTransaction request URI: " 386 llwarns << "LLXMLRPCTransaction request URI: "
387 << mURI << llendl; 387 << mURI << llendl;
388 } 388 }
389 389
@@ -427,9 +427,9 @@ void LLXMLRPCTransaction::Impl::setStatus(Status status,
427 mStatusMessage = 427 mStatusMessage =
428 "Despite our best efforts, something unexpected has gone wrong. \n" 428 "Despite our best efforts, something unexpected has gone wrong. \n"
429 " \n" 429 " \n"
430 "Please check www.secondlife.com/status and the Second Life \n" 430 "Please check www.secondlife.com/status \n"
431 "Announcements forum to see if there is a known problem with \n" 431 "to see if there is a known problem with the service.";
432 "the service."; 432
433 mStatusURI = "http://secondlife.com/status/"; 433 mStatusURI = "http://secondlife.com/status/";
434 /* 434 /*
435 mStatusMessage = 435 mStatusMessage =