From fea69b05696db26abef5a113b0868034e4370338 Mon Sep 17 00:00:00 2001 From: danieldg Date: Tue, 23 Mar 2010 14:51:43 +0000 Subject: Fix CommandFloodPenalty overflow on connect git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12659 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/users.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/users.cpp') diff --git a/src/users.cpp b/src/users.cpp index b188eaaed..f6010bf38 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -835,6 +835,8 @@ void LocalUser::FullConnect() this->GetServerPort(), this->nick.c_str(), this->ident.c_str(), this->host.c_str(), this->GetIPString(), this->fullname.c_str()); ServerInstance->Logs->Log("BANCACHE", DEBUG, "BanCache: Adding NEGATIVE hit for %s", this->GetIPString()); ServerInstance->BanCache->AddHit(this->GetIPString(), "", ""); + // reset the flood penalty (which could have been raised due to things like auto +x) + CommandFloodPenalty = 0; } void User::InvalidateCache() -- cgit v1.2.3