diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:12 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:12 +0000 |
commit | 11bc234c5bd8003c166d51f798e2cd474d2f245a (patch) | |
tree | 1a10974a003aad2389b362a3ba2d92a0ec408a9f /src/protocol/bahamut.c | |
parent | 6a0340b453460b6608bffffb361fa569f74bf29d (diff) |
Added cmd_release_svshold() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1251 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r-- | src/protocol/bahamut.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index bb64e73d9..7a924fb1a 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -486,9 +486,9 @@ void BahamutIRCdProto::cmd_svshold(const char *nick) } /* SVSHOLD - release */ -void bahamut_cmd_release_svshold(const char *nick) +void BahamutIRCdProto::cmd_release_svshold(const char *nick) { - send_cmd(ServerName, "SVSHOLD %s 0", nick); + send_cmd(ServerName, "SVSHOLD %s 0", nick); } /* SVSMODE -b */ @@ -1396,7 +1396,6 @@ void moduleAddAnopeCmds() pmodule_cmd_242(bahamut_cmd_242); pmodule_cmd_243(bahamut_cmd_243); pmodule_cmd_211(bahamut_cmd_211); - pmodule_cmd_release_svshold(bahamut_cmd_release_svshold); pmodule_cmd_unsgline(bahamut_cmd_unsgline); pmodule_cmd_unszline(bahamut_cmd_unszline); pmodule_cmd_szline(bahamut_cmd_szline); |