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/unreal32.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/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 0d9789862..05aaeeafa 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -514,7 +514,7 @@ void UnrealIRCdProto::SendAkill(const char *user, const char *host, const char * ** parv[1] = client ** parv[2] = kill message */ -void UnrealIRCdProto::SendSVSKill(const char *source, const char *user, const char *buf) +void UnrealIRCdProto::SendSVSKillInternal(const char *source, const char *user, const char *buf) { if (!source || !user || !buf) return; send_cmd(source, "%s %s :%s", send_token("SVSKILL", "h"), user, buf); |