From: hno <> Date: Fri, 26 Oct 2001 00:08:47 +0000 (+0000) Subject: authenticateAuthUserRequestSetIp never stored the new IP's due to X-Git-Tag: SQUID_3_0_PRE1~1318 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a51989a0d368707882ea9c13d6e6d36f64d111a7;p=thirdparty%2Fsquid.git authenticateAuthUserRequestSetIp never stored the new IP's due to an inverted condition. --- diff --git a/src/authenticate.cc b/src/authenticate.cc index f6779e1ad5..f5812b28d4 100644 --- a/src/authenticate.cc +++ b/src/authenticate.cc @@ -1,6 +1,6 @@ /* - * $Id: authenticate.cc,v 1.34 2001/10/24 07:45:34 hno Exp $ + * $Id: authenticate.cc,v 1.35 2001/10/25 18:08:47 hno Exp $ * * DEBUG: section 29 Authenticator * AUTHOR: Duane Wessels @@ -281,7 +281,7 @@ authenticateAuthUserRequestSetIp(auth_user_request_t * auth_user_request, struct ipdata = tempnode; } - if (!found) + if (found) return; /* This ip is not in the seen list */