]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
authenticateAuthUserRequestSetIp never stored the new IP's due to
authorhno <>
Fri, 26 Oct 2001 00:08:47 +0000 (00:08 +0000)
committerhno <>
Fri, 26 Oct 2001 00:08:47 +0000 (00:08 +0000)
an inverted condition.

src/authenticate.cc

index f6779e1ad58c3769f84cdc7a9162cf670bd374fa..f5812b28d49c17022861094797280a003d209e8d 100644 (file)
@@ -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 */