From: brain Date: Thu, 21 Feb 2008 14:56:30 +0000 (+0000) Subject: The issue from stable does not exist here, because we initialize userrec::quietquit... X-Git-Tag: v2.0.23~3812 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=08c199a4fe99eff5e3ec756acda18d4a292104fd;p=user%2Fhenk%2Fcode%2Finspircd.git The issue from stable does not exist here, because we initialize userrec::quietquit to false in QuitUser (we didnt in stable) however it makes sense to also init this in the ctor git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8974 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/users.cpp b/src/users.cpp index e3aeb299b..f6ef92af3 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -181,7 +181,7 @@ User::User(InspIRCd* Instance, const std::string &uid) : ServerInstance(Instance Penalty = 0; lines_in = lastping = signon = idle_lastmsg = nping = registered = 0; ChannelCount = timeout = bytes_in = bytes_out = cmds_in = cmds_out = 0; - OverPenalty = ExemptFromPenalty = quitting = exempt = haspassed = dns_done = false; + quietquit = OverPenalty = ExemptFromPenalty = quitting = exempt = haspassed = dns_done = false; fd = -1; recvq.clear(); sendq.clear();