From: amosjeffries <> Date: Sat, 4 Aug 2007 09:08:36 +0000 (+0000) Subject: Fix typo, assert checking wrong value. X-Git-Tag: SQUID_3_0_PRE7~109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=93d633e597a3fc9ffc49614d5bea9035bd55e059;p=thirdparty%2Fsquid.git Fix typo, assert checking wrong value. --- diff --git a/src/auth/ntlm/auth_ntlm.cc b/src/auth/ntlm/auth_ntlm.cc index 7cfd741429..26a5679d0b 100644 --- a/src/auth/ntlm/auth_ntlm.cc +++ b/src/auth/ntlm/auth_ntlm.cc @@ -1,6 +1,6 @@ /* - * $Id: auth_ntlm.cc,v 1.73 2007/08/03 01:57:30 amosjeffries Exp $ + * $Id: auth_ntlm.cc,v 1.74 2007/08/04 03:08:36 amosjeffries Exp $ * * DEBUG: section 29 NTLM Authenticator * AUTHOR: Robert Collins, Henrik Nordstrom, Francesco Chemolli @@ -374,7 +374,7 @@ authenticateNTLMHandleReply(void *data, void *lastserver, char *reply) assert(auth_user->auth_type == AUTH_NTLM); ntlm_user = dynamic_cast(auth_user_request->user()); - assert(ntlm_request != NULL); + assert(ntlm_user != NULL); if (ntlm_request->authserver == NULL) ntlm_request->authserver = static_cast(lastserver);