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 8c6ef6b39..a821320a0 100644 --- a/src/protocol/charybdis.c +++ b/src/protocol/charybdis.c @@ -1068,7 +1068,7 @@ void charybdis_cmd_tmode(const char *source, const char *dest, const char *fmt, send_cmd(NULL, "MODE %s %s", dest, buf); } -void CharybdisProto::cmd_kick(const char *source, const char *chan, const char *user, const char *buf) +void CharybdisProto::SendKick(const char *source, const char *chan, const char *user, const char *buf) { Uid *ud = find_uid(source); User *u = finduser(user); @@ -1076,7 +1076,7 @@ void CharybdisProto::cmd_kick(const char *source, const char *chan, const char * else send_cmd(UseTS6 ? (ud ? ud->uid : source) : source, "KICK %s %s", chan, UseTS6 ? (u ? u->uid : user) : user); } -void CharybdisProto::cmd_notice_ops(const char *source, const char *dest, const char *buf) +void CharybdisProto::SendNoticeChanops(const char *source, const char *dest, const char *buf) { if (!buf) return; Uid *ud = find_uid(source); |