diff options
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/ircd.c b/src/ircd.c index a4edd0b18..370507d5b 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -63,7 +63,6 @@ void initIrcdProto() ircdproto.ircd_cmd_242 = NULL; ircdproto.ircd_cmd_243 = NULL; ircdproto.ircd_cmd_211 = NULL; - ircdproto.ircd_cmd_unszline = NULL; ircdproto.ircd_cmd_szline = NULL; ircdproto.ircd_cmd_sgline = NULL; ircdproto.ircd_cmd_unban = NULL; @@ -509,7 +508,7 @@ void anope_cmd_unsgline(const char *mask) void anope_cmd_unszline(const char *mask) { - ircdproto.ircd_cmd_unszline(mask); + ircdprotonew->cmd_unszline(mask); } void anope_cmd_szline(const char *mask, const char *reason, const char *whom) @@ -702,11 +701,6 @@ void pmodule_cmd_211(void (*func) (const char *buf)) ircdproto.ircd_cmd_211 = func; } -void pmodule_cmd_unszline(void (*func) (const char *mask)) -{ - ircdproto.ircd_cmd_unszline = func; -} - void pmodule_cmd_szline(void (*func) (const char *mask, const char *reason, const char *whom)) { |