diff options
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/ircd.c b/src/ircd.c index 12330437a..d11273d9b 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -87,7 +87,6 @@ void initIrcdProto() ircdproto.ircd_cmd_243 = NULL; ircdproto.ircd_cmd_211 = NULL; ircdproto.ircd_cmd_global = NULL; - ircdproto.ircd_cmd_global_legacy = NULL; ircdproto.ircd_cmd_sqline = NULL; ircdproto.ircd_cmd_squit = NULL; ircdproto.ircd_cmd_svso = NULL; @@ -531,11 +530,6 @@ void anope_cmd_global(const char *source, const char *fmt, ...) ircdproto.ircd_cmd_global(source, buf); } -void anope_cmd_global_legacy(const char *source, const char *fmt) -{ - ircdproto.ircd_cmd_global_legacy(source, fmt); -} - void anope_cmd_sqline(const char *mask, const char *reason) { ircdproto.ircd_cmd_sqline(mask, reason); @@ -918,11 +912,6 @@ void pmodule_cmd_global(void (*func) (const char *source, const char *buf)) ircdproto.ircd_cmd_global = func; } -void pmodule_cmd_global_legacy(void (*func) (const char *source, const char *fmt)) -{ - ircdproto.ircd_cmd_global_legacy = func; -} - void pmodule_cmd_sqline(void (*func) (const char *mask, const char *reason)) { ircdproto.ircd_cmd_sqline = func; |