diff options
| author | 2008-02-21 14:53:51 +0000 | |
|---|---|---|
| committer | 2008-02-21 14:53:51 +0000 | |
| commit | a435bd82dea292f41853ef04a312714a66d81bb5 (patch) | |
| tree | f547be0aa29209a62c07744c64aaf2d1063cbbb5 /src/users.cpp | |
| parent | This took ages to process. Block all revisions in svnmerge that arent needed (diff) | |
Fix bug #497, when we ported back the new cull list stuff, we didnt initialize a new bool in the userrec constructor which determines if the quit server notice line is shown, so its value is
undefined, and may hide the quit snomask.
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8973 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 0368d003e..f8ab07cf0 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -328,7 +328,7 @@ userrec::userrec(InspIRCd* Instance) : ServerInstance(Instance) age = ServerInstance->Time(true); lines_in = lastping = signon = idle_lastmsg = nping = registered = 0; ChannelCount = timeout = flood = bytes_in = bytes_out = cmds_in = cmds_out = 0; - quitting = exempt = haspassed = dns_done = false; + silentquit = quitting = exempt = haspassed = dns_done = false; fd = -1; recvq.clear(); sendq.clear(); |
