summaryrefslogtreecommitdiff
path: root/src/protocol/plexus2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/plexus2.c')
-rw-r--r--src/protocol/plexus2.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/protocol/plexus2.c b/src/protocol/plexus2.c
index 7558597ab..8ba499410 100644
--- a/src/protocol/plexus2.c
+++ b/src/protocol/plexus2.c
@@ -812,10 +812,9 @@ plexus_cmd_sgline (char *mask, char *reason)
send_cmd (s_OperServ, "XLINE * %s :%s", mask, reason);
}
-void
-plexus_cmd_remove_akill (char *user, char *host)
+void PleXusIRCdProto::cmd_remove_akill(const char *user, const char *host)
{
- send_cmd (s_OperServ, "UNKLINE * %s %s", user, host);
+ send_cmd(s_OperServ, "UNKLINE * %s %s", user, host);
}
void
@@ -1756,7 +1755,6 @@ plexus_cmd_ctcp (char *source, char *dest, char *buf)
void
moduleAddAnopeCmds ()
{
- pmodule_cmd_remove_akill (plexus_cmd_remove_akill);
pmodule_cmd_topic (plexus_cmd_topic);
pmodule_cmd_vhost_off (plexus_cmd_vhost_off);
pmodule_cmd_akill (plexus_cmd_akill);