1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 03:23:13 +02:00

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
This commit is contained in:
Naram Qashat cyberbotx@cyberbotx.com
2008-10-02 18:12:54 +00:00
parent 70501666e8
commit fecf65d7ba
3 changed files with 1 additions and 7 deletions
-1
View File
@@ -1155,7 +1155,6 @@ E void anope_SendSVSHOLD(const char *nick); /* SVSHOLD */
E void anope_SendSVSHOLDDel(const char *nick); /* SVSHOLD */
E void anope_cmd_svsinfo(); /* SVSINFO */
E void anope_SendSVSJoin(const char *source, const char *nick,const char *chan, const char *param); /* SVSJOIN */
E void anope_SendSVSMode(User * u, int ac, const char **av); /* SVSMODE */
E void anope_SendSVSMode_chan(const char *name, const char *mode, const char *nick); /* SVSMODE */
E void anope_SendForceNickChange(const char *nick,const char *newnick, time_t when); /* SVSNICK */
E void anope_SendSVSO(const char *source,const char *nick, const char *flag); /* SVSO */
+1 -1
View File
@@ -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);
}
-5
View File
@@ -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);