summaryrefslogtreecommitdiff
path: root/src/ircd.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/ircd.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/ircd.c')
-rw-r--r--src/ircd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ircd.c b/src/ircd.c
index 2c45aa8f6..1d8e32bed 100644
--- a/src/ircd.c
+++ b/src/ircd.c
@@ -107,7 +107,7 @@ void anope_SendClientIntroduction(const char *nick, const char *user, const char
ircdproto->SendClientIntroduction(nick, user, host, real, modes);
}
-void anope_cmd_kick(const char *source, const char *chan, const char *user, const char *fmt, ...)
+void anope_SendKick(const char *source, const char *chan, const char *user, const char *fmt, ...)
{
va_list args;
char buf[BUFSIZE] = "";
@@ -116,10 +116,10 @@ void anope_cmd_kick(const char *source, const char *chan, const char *user, cons
vsnprintf(buf, BUFSIZE - 1, fmt, args);
va_end(args);
}
- ircdproto->cmd_kick(source, chan, user, buf);
+ ircdproto->SendKick(source, chan, user, buf);
}
-void anope_cmd_notice_ops(const char *source, const char *dest, const char *fmt, ...)
+void anope_SendNoticeChanops(const char *source, const char *dest, const char *fmt, ...)
{
va_list args;
char buf[BUFSIZE] = "";
@@ -128,7 +128,7 @@ void anope_cmd_notice_ops(const char *source, const char *dest, const char *fmt,
vsnprintf(buf, BUFSIZE - 1, fmt, args);
va_end(args);
}
- ircdproto->cmd_notice_ops(source, dest, buf);
+ ircdproto->SendNoticeChanops(source, dest, buf);
}
void anope_cmd_message(const char *source, const char *dest, const char *fmt, ...)