diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:28:10 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:28:10 +0000 |
commit | d5d6b049e0ef4ab05a5bfdd632af645190dba457 (patch) | |
tree | a28192e95a261e15381af712178b64a724bff84b /src/protocol/ratbox.c | |
parent | 8a3495279c31c0a5a16aa69409b4d3ec038653eb (diff) |
Rename a bunch of functions to use new scheme.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1299 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/ratbox.c')
-rw-r--r-- | src/protocol/ratbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index c21466893..18968c021 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -699,7 +699,7 @@ void RatboxProto::cmd_sgline(const char *mask, const char *reason) send_cmd(UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ, "XLINE * %s 0 :%s", mask, reason); } -void RatboxProto::cmd_remove_akill(const char *user, const char *host) +void RatboxProto::SendAkillDel(const char *user, const char *host) { Uid *ud = find_uid(s_OperServ); send_cmd(UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ, "UNKLINE * %s %s", user, host); |