diff options
Diffstat (limited to 'src/protocol/ratbox.c')
-rw-r--r-- | src/protocol/ratbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index b58d63688..94a0dd625 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -166,7 +166,7 @@ void RatboxProto::ProcessUsermodes(User *user, int ac, const char **av) case 'o': if (add) { ++opcnt; - if (WallOper) anope_SendGlobops(s_OperServ, "\2%s\2 is now an IRC operator.", user->nick); + if (WallOper) ircdproto->SendGlobops(s_OperServ, "\2%s\2 is now an IRC operator.", user->nick); display_news(user, NEWS_OPER); } else --opcnt; @@ -425,7 +425,7 @@ CUMode myCumodes[128] = { -void RatboxProto::SendGlobops(const char *source, const char *buf) +void RatboxProto::SendGlobopsInternal(const char *source, const char *buf) { if (!buf) return; if (source) { |