summaryrefslogtreecommitdiff
path: root/src/protocol/bahamut.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:12 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:12 +0000
commit6a0340b453460b6608bffffb361fa569f74bf29d (patch)
tree0772b5e894b0220bf890753adb82e2f30a47f0de /src/protocol/bahamut.c
parent081a0311c8e4ecad02ca8b3232c58de7b898621f (diff)
Added cmd_svshold() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1250 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r--src/protocol/bahamut.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c
index 916275e16..bb64e73d9 100644
--- a/src/protocol/bahamut.c
+++ b/src/protocol/bahamut.c
@@ -480,10 +480,9 @@ void BahamutIRCdProto::cmd_mode(const char *source, const char *dest, const char
}
/* SVSHOLD - set */
-void bahamut_cmd_svshold(const char *nick)
+void BahamutIRCdProto::cmd_svshold(const char *nick)
{
- send_cmd(ServerName, "SVSHOLD %s %d :%s", nick, NSReleaseTimeout,
- "Being held for registered user");
+ send_cmd(ServerName, "SVSHOLD %s %d :%s", nick, NSReleaseTimeout, "Being held for registered user");
}
/* SVSHOLD - release */
@@ -1397,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_svshold(bahamut_cmd_svshold);
pmodule_cmd_release_svshold(bahamut_cmd_release_svshold);
pmodule_cmd_unsgline(bahamut_cmd_unsgline);
pmodule_cmd_unszline(bahamut_cmd_unszline);