From 01e3effe38903723e00423a02e6e3d2de4dcb43e Mon Sep 17 00:00:00 2001 From: Leigh Smith Date: Mon, 8 Feb 2016 22:10:31 -0500 Subject: [PATCH] Added prefix to credentials to avoid compilation errors on Linux confusing with krb5.h struct credentials declaration --- Release/tests/functional/http/client/proxy_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Release/tests/functional/http/client/proxy_tests.cpp b/Release/tests/functional/http/client/proxy_tests.cpp index d309c957e2..2d7ca22b27 100644 --- a/Release/tests/functional/http/client/proxy_tests.cpp +++ b/Release/tests/functional/http/client/proxy_tests.cpp @@ -97,7 +97,7 @@ TEST_FIXTURE(uri_address, no_proxy_options_on_winrt) web_proxy proxy(u); VERIFY_IS_TRUE(proxy.is_specified()); VERIFY_ARE_EQUAL(u, proxy.address()); - credentials cred(U("artur"), U("fred")); // relax, this is not my real password + web::credentials cred(U("artur"), U("fred")); // relax, this is not my real password proxy.set_credentials(cred); http_client_config config;