From: Steve Hill Date: Wed, 12 Dec 2012 04:35:22 +0000 (-0700) Subject: Bug 3650: Negotiate auth missing challenge token X-Git-Tag: SQUID_3_4_0_1~450 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df2eb1a3771b98f6789c168f7c910cf25509eea0;p=thirdparty%2Fsquid.git Bug 3650: Negotiate auth missing challenge token --- diff --git a/src/auth/negotiate/auth_negotiate.cc b/src/auth/negotiate/auth_negotiate.cc index c40bb0818d..9710f58c33 100644 --- a/src/auth/negotiate/auth_negotiate.cc +++ b/src/auth/negotiate/auth_negotiate.cc @@ -65,9 +65,6 @@ statefulhelper *negotiateauthenticators = NULL; /// \ingroup AuthNegotiateInternal static int authnegotiate_initialised = 0; -/// \ingroup AuthNegotiateInternal -Auth::Negotiate::Config negotiateConfig; - /// \ingroup AuthNegotiateInternal static hash_table *proxy_auth_cache = NULL; @@ -292,7 +289,7 @@ authenticateNegotiateStats(StoreEntry * sentry) Auth::UserRequest::Pointer Auth::Negotiate::Config::decode(char const *proxy_auth) { - Auth::Negotiate::User *newUser = new Auth::Negotiate::User(&negotiateConfig); + Auth::Negotiate::User *newUser = new Auth::Negotiate::User(Auth::Config::Find("negotiate")); Auth::UserRequest *auth_user_request = new Auth::Negotiate::UserRequest(); assert(auth_user_request->user() == NULL);