From 4e9d4067ceb45fb3d2a7ff802013196de81d515f Mon Sep 17 00:00:00 2001 From: Henrik Nordstrom Date: Wed, 16 Sep 2009 01:48:19 +0200 Subject: [PATCH] Correct a mistyped asser usin = instead of == in this case completely harmless but still wrong.. --- src/auth/digest/auth_digest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/digest/auth_digest.cc b/src/auth/digest/auth_digest.cc index 46041ba775..9cdcaa9927 100644 --- a/src/auth/digest/auth_digest.cc +++ b/src/auth/digest/auth_digest.cc @@ -1036,7 +1036,7 @@ authDigestUserLinkNonce(DigestUser * user, digest_nonce_h * nonce) authDigestNonceLink(nonce); /* ping this nonce to this auth user */ - assert((nonce->user == NULL) || (nonce->user = user)); + assert((nonce->user == NULL) || (nonce->user == user)); /* we don't lock this reference because removing the user removes the * hash too. Of course if that changes we're stuffed so read the code huh? -- 2.47.3