diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:12:54 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:12:54 +0000 |
commit | fecf65d7bae4b540e51e9c80a9335605f5ff7f88 (patch) | |
tree | f8ae5210581aca3b0d1899d0cd25ce309154b18f /src | |
parent | 70501666e8a31d2e959639fd0dba0e06d5005080 (diff) |
Replaced anope_SendSVSMode() with direct call to SendSVSMode() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1327 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/actions.c | 2 | ||||
-rw-r--r-- | src/ircd.c | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/src/actions.c b/src/actions.c index 6c00bdde1..476ccd0f8 100644 --- a/src/actions.c +++ b/src/actions.c @@ -218,7 +218,7 @@ void common_svsmode(User * u, const char *modes, const char *arg) ac++; } - anope_SendSVSMode(u, ac, av); + ircdproto->SendSVSMode(u, ac, av); anope_ProcessUsermodes(u, ac, av); } diff --git a/src/ircd.c b/src/ircd.c index 25629250a..d48158df1 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_SendSVSMode(User *u, int ac, const char **av) -{ - ircdproto->SendSVSMode(u, ac, av); -} - void anope_SendGuestNick(const char *nick, const char *user, const char *host, const char *real, const char *modes) { ircdproto->SendGuestNick(nick, user, host, real, modes); |