diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:10 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:10 +0000 |
commit | f9b628b0d37844e66a8d2acae797a81444df78ba (patch) | |
tree | 64be8440b22051b5c2433969395747ca1221db34 /src/ircd.c | |
parent | d64b3aa890976ef888c11e1c24da5b692f1d67d3 (diff) |
Remove legacy global function.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1208 5417fbe8-f217-4b02-8779-1006273d7864
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; |