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
commit7c9682775a6b374d80b68ff46634b315a9e098c3 (patch)
treeff2c49eba174aa98af9e7f8c53120f0bdd3fe1ff /src/protocol/unreal32.c
parent11bc234c5bd8003c166d51f798e2cd474d2f245a (diff)
Added cmd_unsgline() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1252 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r--src/protocol/unreal32.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c
index 90e93c795..e761f39de 100644
--- a/src/protocol/unreal32.c
+++ b/src/protocol/unreal32.c
@@ -1354,9 +1354,9 @@ void UnrealIRCdProto::cmd_release_svshold(const char *nick)
/*
* SVSNLINE - :realname mask
*/
-void unreal_cmd_unsgline(const char *mask)
+void UnrealIRCdProto::cmd_unsgline(const char *mask)
{
- send_cmd(NULL, "%s - :%s", send_token("SVSNLINE", "BR"), mask);
+ send_cmd(NULL, "%s - :%s", send_token("SVSNLINE", "BR"), mask);
}
/* UNSZLINE */
@@ -1938,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_unsgline(unreal_cmd_unsgline);
pmodule_cmd_unszline(unreal_cmd_unszline);
pmodule_cmd_szline(unreal_cmd_szline);
pmodule_cmd_sgline(unreal_cmd_sgline);