mirror of
https://github.com/anope/anope.git
synced 2026-07-08 05:23:13 +02:00
Replaced anope_SendSZLineDel() with direct call to SendSZLineDel() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1359 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -43,11 +43,6 @@ void anope_ProcessUsermodes(User *user, int ac, const char **av)
|
||||
ircdproto->ProcessUsermodes(user, ac, av);
|
||||
}
|
||||
|
||||
void anope_SendSZLineDel(const char *mask)
|
||||
{
|
||||
ircdproto->SendSZLineDel(mask);
|
||||
}
|
||||
|
||||
void anope_SendSZLine(const char *mask, const char *reason, const char *whom)
|
||||
{
|
||||
ircdproto->SendSZLine(mask, reason, whom);
|
||||
|
||||
+1
-1
@@ -1491,7 +1491,7 @@ static void free_szline_entry(SList * slist, void *item)
|
||||
SXLine *sx = (SXLine *)item;
|
||||
|
||||
/* Remove the SZLINE from all the servers */
|
||||
anope_SendSZLineDel(sx->mask);
|
||||
ircdproto->SendSZLineDel(sx->mask);
|
||||
|
||||
/* Free the structure */
|
||||
free(sx->mask);
|
||||
|
||||
Reference in New Issue
Block a user