diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-04 13:29:15 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-04 13:29:15 +0000 |
commit | 3f971b447fae258a92f2cc6645497cce93f1c04e (patch) | |
tree | 6b9c5fd7a183fb707c512c2d3e59c628d3a431cb | |
parent | d7c6f213ec42585507a12b305a69a0f0740d8caa (diff) |
Change the function name because gcc is dumb :/
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9305 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/protocol.h | 2 | ||||
-rw-r--r-- | src/modules/m_messageflood.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_timedbans.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/protocol.h b/include/protocol.h index 85490c1d0..44964e1e8 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -36,7 +36,7 @@ class ProtocolInterface : public Extensible virtual void SendMode(const std::string &target, parameterlist &modedata) { } - virtual void SendMode(const std::string &target, const std::string &modeline) + virtual void SendModeStr(const std::string &target, const std::string &modeline) { /* Convenience function */ irc::spacesepstream x(modeline); diff --git a/src/modules/m_messageflood.cpp b/src/modules/m_messageflood.cpp index 5c7c0a977..c506a2fb7 100644 --- a/src/modules/m_messageflood.cpp +++ b/src/modules/m_messageflood.cpp @@ -238,7 +238,7 @@ class ModuleMsgFlood : public Module parameters[2] = user->MakeWildHost(); ServerInstance->SendMode(parameters,3,user); - ServerInstance->PI->SendMode(dest->name, std::string("+b ") + user->MakeWildHost()); + ServerInstance->PI->SendModeStr(dest->name, std::string("+b ") + user->MakeWildHost()); } char kickmessage[MAXBUF]; snprintf(kickmessage, MAXBUF, "Channel flood triggered (limit is %d lines in %d secs)", f->lines, f->secs); diff --git a/src/modules/m_timedbans.cpp b/src/modules/m_timedbans.cpp index 6c91d1156..4be32ffc2 100644 --- a/src/modules/m_timedbans.cpp +++ b/src/modules/m_timedbans.cpp @@ -162,7 +162,7 @@ class ModuleTimedBans : public Module setban[1] = "-b"; setban[2] = i->mask.c_str(); - ServerInstance->PI->SendMode(i->channel, std::string("-b ") + setban[2]); + ServerInstance->PI->SendModeStr(i->channel, std::string("-b ") + setban[2]); ServerInstance->SendMode(setban,3, ServerInstance->FakeClient); CUList empty; |