diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:33:51 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:33:51 +0000 |
commit | 036c287376995bcf4e35f89fdf0e2036ba99b6dd (patch) | |
tree | d26624c367d9cb0cad42bd18d250ef30e491ee2b /src/ircd.c | |
parent | 50db0bb6807382c78f67a77670ecccf8038207a6 (diff) |
Replaced anope_SendPong() with direct call to SendPong() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1342 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 818becd50..0c03c22ac 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_SendPong(const char *servname, const char *who) -{ - ircdproto->SendPong(servname, who); -} - void anope_SendJoin(const char *user, const char *channel, time_t chantime) { ircdproto->SendJoin(user, channel, chantime); |