From 19157777c5f977fddbcfdc8cdad78e12bf0d6bbb Mon Sep 17 00:00:00 2001 From: w00t Date: Tue, 28 Aug 2007 13:48:28 +0000 Subject: Remove the last uses of localised fake clients. This removes a lot of allocations (and uses of UIDs), and cleans things up a bit git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7943 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_timedbans.cpp | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'src/modules/m_timedbans.cpp') diff --git a/src/modules/m_timedbans.cpp b/src/modules/m_timedbans.cpp index 40f740922..58dffbbe4 100644 --- a/src/modules/m_timedbans.cpp +++ b/src/modules/m_timedbans.cpp @@ -161,22 +161,15 @@ class ModuleTimedBans : public Module setban[0] = i->channel.c_str(); setban[1] = "-b"; setban[2] = i->mask.c_str(); - // kludge alert! - // ::SendMode expects a userrec* to send the numeric replies - // back to, so we create it a fake user that isnt in the user - // hash and set its descriptor to FD_MAGIC_NUMBER so the data - // falls into the abyss :p - userrec* temp = new userrec(ServerInstance); - temp->SetFd(FD_MAGIC_NUMBER); - /* FIX: Send mode remotely*/ + + /* Send mode remotely*/ std::deque n; n.push_back(setban[0]); n.push_back("-b"); n.push_back(setban[2]); - ServerInstance->SendMode(setban,3,temp); + ServerInstance->SendMode(setban,3, ServerInstance->FakeClient); Event rmode((char *)&n, NULL, "send_mode"); rmode.Send(ServerInstance); - DELETE(temp); } else { -- cgit v1.2.3