summaryrefslogtreecommitdiff
path: root/src/protocol/unreal32.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 08:31:33 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 08:31:33 +0000
commit4e395e19629abe6b93c4b14a0608d071dbf4b5b4 (patch)
treeeb5005053da22904b34a5679ef4001ae3c713445 /src/protocol/unreal32.c
parent341b226c63e5cf193246ec983e0736dd5af78be7 (diff)
KICK, notice ops.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1303 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r--src/protocol/unreal32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c
index 545e311af..dd05d1e5f 100644
--- a/src/protocol/unreal32.c
+++ b/src/protocol/unreal32.c
@@ -561,13 +561,13 @@ void UnrealIRCdProto::SendClientIntroduction(const char *nick, const char *user,
cmd_sqline(nick, "Reserved for services");
}
-void UnrealIRCdProto::cmd_kick(const char *source, const char *chan, const char *user, const char *buf)
+void UnrealIRCdProto::SendKick(const char *source, const char *chan, const char *user, const char *buf)
{
if (buf) send_cmd(source, "%s %s %s :%s", send_token("KICK", "H"), chan, user, buf);
else send_cmd(source, "%s %s %s", send_token("KICK", "H"), chan, user);
}
-void UnrealIRCdProto::cmd_notice_ops(const char *source, const char *dest, const char *buf)
+void UnrealIRCdProto::SendNoticeChanops(const char *source, const char *dest, const char *buf)
{
if (!buf) return;
send_cmd(source, "%s @%s :%s", send_token("NOTICE", "B"), dest, buf);