diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-08 14:38:24 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-08 14:38:24 +0000 |
commit | 93876363f89ea7a451ba1e18407e08a539854208 (patch) | |
tree | 25b70293d4358ce4af60e355a4b3a8483d666699 /src/modules/m_park.cpp | |
parent | 6ab1d0dffb8084bf6a2ad8a446a3836fa3760c8a (diff) |
kill_link() and Server::QuitUser() -> userrec::QuitUser() (static member) - this cant be a normal member as it causes the userrec to be deleted, and "delete this" is bad, mmm'k
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4789 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_park.cpp')
-rw-r--r-- | src/modules/m_park.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_park.cpp b/src/modules/m_park.cpp index 31da8f033..2a9aad5f0 100644 --- a/src/modules/m_park.cpp +++ b/src/modules/m_park.cpp @@ -325,7 +325,7 @@ class ModulePark : public Module // and then corrupt the pointer! pinfo.erase(j); if (thisnick) - Srv->QuitUser(thisnick,"PARK timeout"); + userrec::QuitUser(thisnick,"PARK timeout"); go_again = true; break; } |