diff options
Diffstat (limited to 'src/protocol/charybdis.c')
-rw-r--r-- | src/protocol/charybdis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/charybdis.c b/src/protocol/charybdis.c index 840e35521..e867921d6 100644 --- a/src/protocol/charybdis.c +++ b/src/protocol/charybdis.c @@ -167,7 +167,7 @@ void CharybdisProto::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; @@ -434,7 +434,7 @@ CUMode myCumodes[128] = { {0}, {0}, {0}, {0}, {0} }; -void CharybdisProto::SendGlobops(const char *source, const char *buf) +void CharybdisProto::SendGlobopsInternal(const char *source, const char *buf) { if (!buf) return; if (source) { |