diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 21:20:35 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 21:20:35 +0000 |
commit | 1f579c0fe2f139fccf5fdfb971080ba99cfdcdab (patch) | |
tree | 93369b5c9a824e76f756735d58ebc5656e842742 /src/actions.c | |
parent | 6c305a3d6731191899f4331be56a071dab66d194 (diff) |
Replaced anope_SendSQLine() with direct call to SendSQLine() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1348 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 6 |
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); } } |