diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:04:29 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:04:29 +0000 |
commit | 70501666e8a31d2e959639fd0dba0e06d5005080 (patch) | |
tree | 798a63d5ec2d4e1506fdfd8887ac980c45ae34d4 /src/protocol/ratbox.c | |
parent | af0bf80a07b0a525175c05bc04f61c364ac4bca7 (diff) |
Replaced anope_SendSVSKill() with direct call to SendSVSKill() in IRCDProto class.
Also added SendSVSKillInternal() function to IRCDProto class, now SendSVSKill() is a stub to handle varargs.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1326 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 d78027487..7e2e97878 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -654,7 +654,7 @@ void RatboxProto::SendAkill(const char *user, const char *host, const char *who, send_cmd(UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ, "KLINE * %ld %s %s :%s", static_cast<long>(expires - time(NULL)), user, host, reason); } -void RatboxProto::SendSVSKill(const char *source, const char *user, const char *buf) +void RatboxProto::SendSVSKillInternal(const char *source, const char *user, const char *buf) { if (!source || !user || !buf) return; Uid *ud = find_uid(source), *ud2 = find_uid(user); |