diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 20:18:03 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 20:18:03 +0000 |
commit | 809f55f1cc366eb6ab8882fcb7a7a2869fa55d23 (patch) | |
tree | 2b9b0526e4347c900e4075a1457a1a812274ecff /src/core/bs_bot.c | |
parent | c3964f7483b522f4b0b05d4275cbd72d638d489e (diff) |
Replaced anope_SendSQLineDel() with direct call to SendSQLineDel() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1344 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/bs_bot.c')
-rw-r--r-- | src/core/bs_bot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/bs_bot.c b/src/core/bs_bot.c index 901b7af79..a93f2396a 100644 --- a/src/core/bs_bot.c +++ b/src/core/bs_bot.c @@ -267,7 +267,7 @@ int do_bot(User * u) /* The new nick is really different, so we remove the Q line for the old nick. */ if (ircd->sqline) { - anope_SendSQLineDel(bi->nick); + ircdproto->SendSQLineDel(bi->nick); } /* We check whether user with this nick is online, and kill it if so */ @@ -324,7 +324,7 @@ int do_bot(User * u) "Quit: Help! I'm being deleted by %s!", u->nick); if (ircd->sqline) { - anope_SendSQLineDel(bi->nick); + ircdproto->SendSQLineDel(bi->nick); } delete bi; |