From 91a548eb7373ffd67feb4f10919efdf707076fe8 Mon Sep 17 00:00:00 2001 From: Christoph Albert Date: Wed, 23 Aug 2017 16:00:34 +0200 Subject: [PATCH] Fixed proxy credentials for http_client_asio --- Release/src/http/client/http_client_asio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Release/src/http/client/http_client_asio.cpp b/Release/src/http/client/http_client_asio.cpp index 2183c9c389..19e09b2427 100644 --- a/Release/src/http/client/http_client_asio.cpp +++ b/Release/src/http/client/http_client_asio.cpp @@ -809,7 +809,7 @@ class asio_context : public request_context, public std::enable_shared_from_this { std::string header; header.append("Proxy-Authorization: Basic "); - header.append(generate_base64_userpass(m_http_client->client_config().credentials())); + header.append(generate_base64_userpass(m_http_client->client_config().proxy().credentials())); header.append(CRLF); return header; }