diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:17:47 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:17:47 +0000 |
commit | 14ceeafb1d88dd688a9ad428988f29e562dbacf0 (patch) | |
tree | 542acfa8c825adc284a91d76efede76357d29cc6 /src/send.c | |
parent | 5e6a653e48a74318f205632a21fb525aac1cf0cc (diff) |
Replaced anope_SendGlobalPrivmsg() with direct call to SendGlobalPrivmsg() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1339 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/send.c')
-rw-r--r-- | src/send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/send.c b/src/send.c index c61c932af..939268710 100644 --- a/src/send.c +++ b/src/send.c @@ -102,7 +102,7 @@ void notice_server(char *source, Server * s, char *fmt, ...) vsnprintf(buf, BUFSIZE - 1, fmt, args); if (NSDefFlags & NI_MSG) { - anope_SendGlobalPrivmsg(source, s->name, buf); + ircdproto->SendGlobalPrivmsg(source, s->name, buf); } else { ircdproto->SendGlobalNotice(source, s->name, buf); } |