diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:37:32 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:37:32 +0000 |
commit | 765f561952d1a77a445128d7cbdc0da0a16c1706 (patch) | |
tree | b8a8995e95e5450d5f21fc931673478fb57054eb /src/protocol/ratbox.c | |
parent | 984779a0f3a9e563844f7a4e2b695d1aa2b10c35 (diff) |
Replaced anope_SendKick() with direct call to SendKick() in IRCDProto class.
Also added SendKickInternal() function to IRCDProto class, now SendKick() is a stub to handle varargs.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1331 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/ratbox.c')
-rw-r--r-- | src/protocol/ratbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index 3ddadc07d..c669e366f 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -941,7 +941,7 @@ void ratbox_cmd_tmode(const char *source, const char *dest, const char *fmt, ... send_cmd(NULL, "MODE %s %s", dest, buf); } -void RatboxProto::SendKick(const char *source, const char *chan, const char *user, const char *buf) +void RatboxProto::SendKickInternal(const char *source, const char *chan, const char *user, const char *buf) { Uid *ud = find_uid(source); User *u = finduser(user); |