summaryrefslogtreecommitdiff
path: root/src/actions.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions.c')
-rw-r--r--src/actions.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/actions.c b/src/actions.c
index 6b78ebc97..93613c102 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -89,7 +89,7 @@ void sqline(char *mask, char *reason)
if (ircd->chansqline) {
if (*mask == '#') {
- anope_SendSQLine(mask, reason);
+ ircdproto->SendSQLine(mask, reason);
for (i = 0; i < 1024; i++) {
for (c = chanlist[i]; c; c = next) {
@@ -113,10 +113,10 @@ void sqline(char *mask, char *reason)
}
}
} else {
- anope_SendSQLine(mask, reason);
+ ircdproto->SendSQLine(mask, reason);
}
} else {
- anope_SendSQLine(mask, reason);
+ ircdproto->SendSQLine(mask, reason);
}
}