From 904236eefed76d1e19a062c68a0d2b737810753c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Mon, 12 Apr 2021 20:19:48 +0200 Subject: [PATCH] #3095: Digest proxy authentication does not work in 1.10.1 --- Net/src/HTTPClientSession.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Net/src/HTTPClientSession.cpp b/Net/src/HTTPClientSession.cpp index d64c7aa22..ea2cfa2a8 100644 --- a/Net/src/HTTPClientSession.cpp +++ b/Net/src/HTTPClientSession.cpp @@ -464,6 +464,7 @@ void HTTPClientSession::proxyAuthenticateImpl(HTTPRequest& request, const ProxyC _proxyDigestCreds.setPassword(proxyConfig.password); proxyAuthenticateDigest(request); } + break; case PROXY_AUTH_NTLM: if (_ntlmProxyAuthenticated) @@ -478,6 +479,7 @@ void HTTPClientSession::proxyAuthenticateImpl(HTTPRequest& request, const ProxyC proxyAuthenticateNTLM(request); _ntlmProxyAuthenticated = true; } + break; } }