From 5e9c1cc1a71ca7eeae89bbccdd02004bb4b0eb3d Mon Sep 17 00:00:00 2001 From: Wolfgang Breyha Date: Thu, 11 Oct 2012 20:21:16 -0600 Subject: [PATCH] Bug 3655: pinning failure breaks NTLM and Negotiate authentication --- src/http.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/http.cc b/src/http.cc index 386776e808..6ecbadd25d 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1393,8 +1393,8 @@ HttpStateData::processReplyBody() ispinned = true; } - if (request->pinnedConnection() && ispinned) { - request->pinnedConnection()->pinConnection(serverConnection, request, _peer, + if (request->clientConnectionManager.valid() && ispinned) { + request->clientConnectionManager->pinConnection(serverConnection, request, _peer, (request->flags.connectionAuth != 0)); } else { fwd->pconnPush(serverConnection, request->peer_host ? request->peer_host : request->GetHost()); -- 2.47.2