Skip to content
Snippets Groups Projects
Commit ba93f428 authored by Oz Linden's avatar Oz Linden
Browse files

correct cut/paste error for setting PO_HTTP_PROXY, and add logging

parent 4d503993
No related branches found
No related tags found
No related merge requests found
...@@ -88,15 +88,18 @@ HttpStatus HttpPolicyGlobal::set(HttpRequest::EPolicyOption opt, const std::stri ...@@ -88,15 +88,18 @@ HttpStatus HttpPolicyGlobal::set(HttpRequest::EPolicyOption opt, const std::stri
switch (opt) switch (opt)
{ {
case HttpRequest::PO_CA_PATH: case HttpRequest::PO_CA_PATH:
LL_DEBUGS("CoreHttp") << "Setting global CA Path to " << value << LL_ENDL;
mCAPath = value; mCAPath = value;
break; break;
case HttpRequest::PO_CA_FILE: case HttpRequest::PO_CA_FILE:
LL_DEBUGS("CoreHttp") << "Setting global CA File to " << value << LL_ENDL;
mCAFile = value; mCAFile = value;
break; break;
case HttpRequest::PO_HTTP_PROXY: case HttpRequest::PO_HTTP_PROXY:
mCAFile = value; LL_DEBUGS("CoreHttp") << "Setting global Proxy to " << value << LL_ENDL;
mHttpProxy = value;
break; break;
default: default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment