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 18968c021..652bcf6c6 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -732,7 +732,7 @@ host: the 'host' portion of the kline reason: the reason for the kline. */ -void RatboxProto::cmd_akill(const char *user, const char *host, const char *who, time_t when, time_t expires, const char *reason) +void RatboxProto::SendAkill(const char *user, const char *host, const char *who, time_t when, time_t expires, const char *reason) { Uid *ud = find_uid(s_OperServ); send_cmd(UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ, "KLINE * %ld %s %s :%s", static_cast<long>(expires - time(NULL)), user, host, reason); @@ -745,7 +745,7 @@ void RatboxProto::SendSVSKill(const char *source, const char *user, const char * send_cmd(UseTS6 ? (ud ? ud->uid : source) : source, "KILL %s :%s", UseTS6 ? (ud2 ? ud2->uid : user) : user, buf); } -void RatboxProto::cmd_svsmode(User *u, int ac, const char **av) +void RatboxProto::SendSVSMode(User *u, int ac, const char **av) { send_cmd(UseTS6 ? TS6SID : ServerName, "SVSMODE %s %s", u->nick, av[0]); } |