diff options
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ircd.c b/src/ircd.c index 12225798d..85e55f9fc 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -43,18 +43,6 @@ void anope_ProcessUsermodes(User *user, int ac, const char **av) ircdproto->ProcessUsermodes(user, ac, av); } -void anope_SendMode(const char *source, const char *dest, const char *fmt, ...) -{ - va_list args; - char buf[BUFSIZE] = ""; - if (fmt) { - va_start(args, fmt); - vsnprintf(buf, BUFSIZE - 1, fmt, args); - va_end(args); - } - ircdproto->SendMode(source, dest, buf); -} - void anope_SendClientIntroduction(const char *nick, const char *user, const char *host, const char *real, const char *modes) { ircdproto->SendClientIntroduction(nick, user, host, real, modes); |