diff options
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); |