summaryrefslogtreecommitdiff
path: root/src/protocol/unreal32.c
diff options
context:
space:
mode:
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 b075306a4..8411cd2c2 100644
--- a/src/protocol/unreal32.c
+++ b/src/protocol/unreal32.c
@@ -512,10 +512,9 @@ void unreal_cmd_svsadmin(char *server, int set)
ircd_proto.cmd_svsnoop(server, set);
}
-void unreal_cmd_remove_akill(char *user, char *host)
+void UnrealIRCdProto::cmd_remove_akill(const char *user, const char *host)
{
- send_cmd(NULL, "%s - G %s %s %s", send_token("TKL", "BD"), user, host,
- s_OperServ);
+ send_cmd(NULL, "%s - G %s %s %s", send_token("TKL", "BD"), user, host, s_OperServ);
}
void unreal_cmd_topic(char *whosets, char *chan, char *whosetit,
@@ -2117,7 +2116,6 @@ void moduleAddIRCDMsgs(void) {
**/
void moduleAddAnopeCmds()
{
- pmodule_cmd_remove_akill(unreal_cmd_remove_akill);
pmodule_cmd_topic(unreal_cmd_topic);
pmodule_cmd_vhost_off(unreal_cmd_vhost_off);
pmodule_cmd_akill(unreal_cmd_akill);