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/bahamut.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/bahamut.c')
-rw-r--r-- | src/protocol/bahamut.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index 8cf68388b..416cc9974 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -694,14 +694,14 @@ void BahamutIRCdProto::cmd_szline(const char *mask, const char *reason, const ch } /* SVSNOOP */ -void BahamutIRCdProto::cmd_svsnoop(const char *server, int set) +void BahamutIRCdProto::SendSVSNOOP(const char *server, int set) { send_cmd(NULL, "SVSNOOP %s %s", server, set ? "+" : "-"); } void bahamut_cmd_svsadmin(const char *server, int set) { - ircd_proto.cmd_svsnoop(server, set); + ircd_proto.SendSVSNOOP(server, set); } /* SGLINE */ @@ -711,7 +711,7 @@ void BahamutIRCdProto::cmd_sgline(const char *mask, const char *reason) } /* RAKILL */ -void BahamutIRCdProto::cmd_remove_akill(const char *user, const char *host) +void BahamutIRCdProto::SendAkillDel(const char *user, const char *host) { send_cmd(NULL, "RAKILL %s %s", host, user); } |