summaryrefslogtreecommitdiff
path: root/src/protocol/charybdis.c
diff options
context:
space:
mode:
authorNaram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 18:04:29 +0000
committerNaram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 18:04:29 +0000
commit70501666e8a31d2e959639fd0dba0e06d5005080 (patch)
tree798a63d5ec2d4e1506fdfd8887ac980c45ae34d4 /src/protocol/charybdis.c
parentaf0bf80a07b0a525175c05bc04f61c364ac4bca7 (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/charybdis.c')
-rw-r--r--src/protocol/charybdis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/charybdis.c b/src/protocol/charybdis.c
index 6afb2cd07..beff0a919 100644
--- a/src/protocol/charybdis.c
+++ b/src/protocol/charybdis.c
@@ -715,7 +715,7 @@ void CharybdisProto::SendAkill(const char *user, const char *host, const char *w
send_cmd(UseTS6 ? (bi ? bi->uid.c_str() : s_OperServ) : s_OperServ, "KLINE * %ld %s %s :%s", static_cast<long>(expires - time(NULL)), user, host, reason);
}
-void CharybdisProto::SendSVSKill(const char *source, const char *user, const char *buf)
+void CharybdisProto::SendSVSKillInternal(const char *source, const char *user, const char *buf)
{
if (!source || !user || !buf) return;
BotInfo *bi = findbot(source);