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:11 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
commit8705fed8d72a93e34a8b8759bcb42d73f9106370 (patch)
tree6d2f6eb1135ce906a4638ee7f0c059cc5a5fb723 /src/protocol/bahamut.c
parent6ae0b4e597e18857b2f96de49c947e47f101d80b (diff)
Added cmd_unsqline() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1239 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r--src/protocol/bahamut.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c
index ea8d71aad..96d0e9167 100644
--- a/src/protocol/bahamut.c
+++ b/src/protocol/bahamut.c
@@ -765,9 +765,9 @@ void BahamutIRCdProto::cmd_topic(const char *whosets, const char *chan, const ch
}
/* UNSQLINE */
-void bahamut_cmd_unsqline(const char *user)
+void BahamutIRCdProto::cmd_unsqline(const char *user)
{
- send_cmd(NULL, "UNSQLINE %s", user);
+ send_cmd(NULL, "UNSQLINE %s", user);
}
/* JOIN - SJOIN */
@@ -1473,7 +1473,6 @@ void moduleAddAnopeCmds()
pmodule_cmd_375(bahamut_cmd_375);
pmodule_cmd_376(bahamut_cmd_376);
pmodule_cmd_351(bahamut_cmd_351);
- pmodule_cmd_unsqline(bahamut_cmd_unsqline);
pmodule_cmd_invite(bahamut_cmd_invite);
pmodule_cmd_part(bahamut_cmd_part);
pmodule_cmd_391(bahamut_cmd_391);