diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:41:34 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:41:34 +0000 |
commit | c3964f7483b522f4b0b05d4275cbd72d638d489e (patch) | |
tree | 54ba65ccb8138624d894d6cce092175888f481b6 /src/ircd.c | |
parent | 036c287376995bcf4e35f89fdf0e2036ba99b6dd (diff) |
Replaced anope_SendJoin() with direct call to SendJoin() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1343 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 0c03c22ac..c0f66c7d5 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_SendJoin(const char *user, const char *channel, time_t chantime) -{ - ircdproto->SendJoin(user, channel, chantime); -} - void anope_SendSQLineDel(const char *user) { ircdproto->SendSQLineDel(user); |