summaryrefslogtreecommitdiff
path: root/src/protocol/unreal32.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
commit11bc234c5bd8003c166d51f798e2cd474d2f245a (patch)
tree1a10974a003aad2389b362a3ba2d92a0ec408a9f /src/protocol/unreal32.c
parent6a0340b453460b6608bffffb361fa569f74bf29d (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/unreal32.c')
-rw-r--r--src/protocol/unreal32.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c
index e34531e62..90e93c795 100644
--- a/src/protocol/unreal32.c
+++ b/src/protocol/unreal32.c
@@ -1345,10 +1345,9 @@ void UnrealIRCdProto::cmd_svshold(const char *nick)
}
/* SVSHOLD - release */
-void unreal_cmd_release_svshold(const char *nick)
+void UnrealIRCdProto::cmd_release_svshold(const char *nick)
{
- send_cmd(NULL, "%s - Q * %s %s", send_token("TKL", "BD"), nick,
- ServerName);
+ send_cmd(NULL, "%s - Q * %s %s", send_token("TKL", "BD"), nick, ServerName);
}
/* UNSGLINE */
@@ -1939,7 +1938,6 @@ void moduleAddAnopeCmds()
pmodule_cmd_242(unreal_cmd_242);
pmodule_cmd_243(unreal_cmd_243);
pmodule_cmd_211(unreal_cmd_211);
- pmodule_cmd_release_svshold(unreal_cmd_release_svshold);
pmodule_cmd_unsgline(unreal_cmd_unsgline);
pmodule_cmd_unszline(unreal_cmd_unszline);
pmodule_cmd_szline(unreal_cmd_szline);