diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 21:39:50 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 21:39:50 +0000 |
commit | 6705f0a90d5d041bdd11574f3626c68f99b04b76 (patch) | |
tree | eb16e7ef1389b3c4525e02b5b84e1caab1f06e7c /src/ircd.c | |
parent | d1b4212a40333abd69c234471cf8a224d2e63769 (diff) |
Replaced anope_SendForceNickChange() with direct call to SendForceNickChange() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1353 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ircd.c b/src/ircd.c index 44a8e3bc3..7f00e50e8 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -43,11 +43,6 @@ void anope_ProcessUsermodes(User *user, int ac, const char **av) ircdproto->ProcessUsermodes(user, ac, av); } -void anope_SendForceNickChange(const char *source, const char *guest, time_t when) -{ - ircdproto->SendForceNickChange(source, guest, when); -} - void anope_SendVhost(const char *nick, const char *vIdent, const char *vhost) { ircdproto->SendVhost(nick, vIdent, vhost); |