mirror of
https://github.com/anope/anope.git
synced 2026-06-26 13:36:38 +02:00
Replaced anope_SendSVID() with direct call to SendSVID() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1364 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -1133,7 +1133,6 @@ E void anope_SendCTCP(const char *source, const char *dest, const char *fmt, ..
|
||||
E void anope_SendNumeric(const char *, int, const char *, const char *, ...) FORMAT(printf, 4, 5); /* Numerics */
|
||||
|
||||
E void anope_ProcessUsermodes(User * user, int ac, const char **av);
|
||||
E void anope_SendSVID(const char *nick, time_t ts);
|
||||
E void anope_SendSVID2(User *u, const char *ts);
|
||||
E void anope_SendSVID3(User *u, const char *ts);
|
||||
E void anope_SendUnregisteredNick(User *u);
|
||||
|
||||
@@ -43,11 +43,6 @@ void anope_ProcessUsermodes(User *user, int ac, const char **av)
|
||||
ircdproto->ProcessUsermodes(user, ac, av);
|
||||
}
|
||||
|
||||
void anope_SendSVID(const char *nick, time_t ts)
|
||||
{
|
||||
ircdproto->SendSVID(nick, ts);
|
||||
}
|
||||
|
||||
void anope_SendUnregisteredNick(User *u)
|
||||
{
|
||||
ircdproto->SendUnregisteredNick(u);
|
||||
|
||||
+1
-1
@@ -662,7 +662,7 @@ User *do_nick(const char *source, const char *nick, const char *username, const
|
||||
/* Resets the svid because it doesn't match */
|
||||
user->svid = 1;
|
||||
|
||||
anope_SendSVID(user->nick, user->timestamp);
|
||||
ircdproto->SendSVID(user->nick, user->timestamp);
|
||||
|
||||
} else {
|
||||
user->svid = 1;
|
||||
|
||||
Reference in New Issue
Block a user