diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ircd.c | 5 | ||||
-rw-r--r-- | src/operserv.c | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/src/ircd.c b/src/ircd.c index 2fd671bf9..1bddd6458 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_SendSZLineDel(const char *mask) -{ - ircdproto->SendSZLineDel(mask); -} - void anope_SendSZLine(const char *mask, const char *reason, const char *whom) { ircdproto->SendSZLine(mask, reason, whom); diff --git a/src/operserv.c b/src/operserv.c index ed343511d..88b31264e 100644 --- a/src/operserv.c +++ b/src/operserv.c @@ -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); |