From a51989a0d368707882ea9c13d6e6d36f64d111a7 Mon Sep 17 00:00:00 2001 From: hno <> Date: Fri, 26 Oct 2001 00:08:47 +0000 Subject: [PATCH] authenticateAuthUserRequestSetIp never stored the new IP's due to an inverted condition. --- src/authenticate.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.47.3