diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:09 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:09 +0000 |
commit | 0f2719990e6b61c9172e0a4593b7a1605bb29f44 (patch) | |
tree | 3a17771feac2e755d3e5700e49b1b90e5126b42d /src/protocol/dreamforge.c | |
parent | 6feb4755adb8011d90cc75a934b08eaeff2f7f41 (diff) |
Added cmd_remove_akill() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1199 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/dreamforge.c')
-rw-r--r-- | src/protocol/dreamforge.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/dreamforge.c b/src/protocol/dreamforge.c index a73573662..5af98dcdb 100644 --- a/src/protocol/dreamforge.c +++ b/src/protocol/dreamforge.c @@ -531,9 +531,9 @@ void dreamforge_cmd_svsadmin(char *server, int set) ircd_proto.cmd_svsnoop(server, set); } -void dreamforge_cmd_remove_akill(char *user, char *host) +void DreamForgeProto::cmd_remove_akill(const char *user, const char *host) { - send_cmd(NULL, "RAKILL %s %s", host, user); + send_cmd(NULL, "RAKILL %s %s", host, user); } void dreamforge_cmd_topic(char *whosets, char *chan, char *whosetit, @@ -1270,7 +1270,6 @@ void dreamforge_cmd_ctcp(char *source, char *dest, char *buf) **/ void moduleAddAnopeCmds() { - pmodule_cmd_remove_akill(dreamforge_cmd_remove_akill); pmodule_cmd_topic(dreamforge_cmd_topic); pmodule_cmd_vhost_off(dreamforge_cmd_vhost_off); pmodule_cmd_akill(dreamforge_cmd_akill); |