diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 22:01:18 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 22:01:18 +0000 |
commit | 6395adff7939b5dbe798541c1c78dbe2cbee8b14 (patch) | |
tree | 3512372229de836c1ef5be537ecb6d2968e520bf /src/protocol/bahamut.c | |
parent | b78420a0ee3ab0ff212a2f77778a9ed8e66f6338 (diff) |
Replaced anope_SendSVSMode_chan() with direct call to SendSVSModeChan() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1363 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r-- | src/protocol/bahamut.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index 27eb415bf..0c8b0ebef 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -474,13 +474,13 @@ void BahamutIRCdProto::SendSVSHoldDel(const char *nick) /* SVSMODE -b */ void BahamutIRCdProto::SendBanDel(const char *name, const char *nick) { - SendSVSMode_chan(name, "-b", nick); + SendSVSModeChan(name, "-b", nick); } /* SVSMODE channel modes */ -void BahamutIRCdProto::SendSVSMode_chan(const char *name, const char *mode, const char *nick) +void BahamutIRCdProto::SendSVSModeChan(const char *name, const char *mode, const char *nick) { if (nick) send_cmd(ServerName, "SVSMODE %s %s %s", name, mode, nick); else send_cmd(ServerName, "SVSMODE %s %s", name, mode); |