summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2021-04-20 19:09:04 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2021-04-20 19:42:39 +0300
commit2de92430efa91fec0fddcec9be0755a69ca4f7b5 (patch)
treeaf0366c5f376d2048c20b67cc5ca33ec65aa5e3f /indra
parent45b5ac72b2384ea370e4138e08c4c8344d94b4e3 (diff)
Revert "SL-15141 Update CURL to 7.76.1" due to OPS-4251
This reverts commit 45b5ac72b2384ea370e4138e08c4c8344d94b4e3 and updates curl links
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llxmlrpclistener.cpp2
-rw-r--r--indra/newview/llxmlrpctransaction.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llxmlrpclistener.cpp b/indra/newview/llxmlrpclistener.cpp
index 1053059a33..bae615232e 100644
--- a/indra/newview/llxmlrpclistener.cpp
+++ b/indra/newview/llxmlrpclistener.cpp
@@ -344,7 +344,7 @@ public:
switch (curlcode)
{
case CURLE_SSL_PEER_CERTIFICATE:
- // same value as CURLE_SSL_CACERT:
+ case CURLE_SSL_CACERT:
data["certificate"] = mTransaction->getErrorCertData();
break;
diff --git a/indra/newview/llxmlrpctransaction.cpp b/indra/newview/llxmlrpctransaction.cpp
index 1af4588240..32c8ce66a0 100644
--- a/indra/newview/llxmlrpctransaction.cpp
+++ b/indra/newview/llxmlrpctransaction.cpp
@@ -499,10 +499,10 @@ void LLXMLRPCTransaction::Impl::setHttpStatus(const LLCore::HttpStatus &status)
break;
case CURLE_SSL_PEER_CERTIFICATE:
- // same value as CURLE_SSL_CACERT:
message = LLTrans::getString("ssl_peer_certificate");
break;
+ case CURLE_SSL_CACERT:
case CURLE_SSL_CONNECT_ERROR:
message = LLTrans::getString("ssl_connect_error");
break;