summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2016-07-28 13:19:34 -0400
committerOz Linden <oz@lindenlab.com>2016-07-28 13:19:34 -0400
commitba93f428e363eaeba99b8567724e675a2f4a867f (patch)
treec86e7bbc0bc528a0d69199858038b40a244b0f06
parent4d50399370b412057fd654fc4a686b8bfed3c489 (diff)
correct cut/paste error for setting PO_HTTP_PROXY, and add logging
-rw-r--r--indra/llcorehttp/_httppolicyglobal.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llcorehttp/_httppolicyglobal.cpp b/indra/llcorehttp/_httppolicyglobal.cpp
index 3d0df96ade..8da6cba6d0 100644
--- a/indra/llcorehttp/_httppolicyglobal.cpp
+++ b/indra/llcorehttp/_httppolicyglobal.cpp
@@ -88,15 +88,18 @@ HttpStatus HttpPolicyGlobal::set(HttpRequest::EPolicyOption opt, const std::stri
switch (opt)
{
case HttpRequest::PO_CA_PATH:
+ LL_DEBUGS("CoreHttp") << "Setting global CA Path to " << value << LL_ENDL;
mCAPath = value;
break;
case HttpRequest::PO_CA_FILE:
+ LL_DEBUGS("CoreHttp") << "Setting global CA File to " << value << LL_ENDL;
mCAFile = value;
break;
case HttpRequest::PO_HTTP_PROXY:
- mCAFile = value;
+ LL_DEBUGS("CoreHttp") << "Setting global Proxy to " << value << LL_ENDL;
+ mHttpProxy = value;
break;
default: