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:29:56 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 08:29:56 +0000
commit5d695b7bf69eada724742fe7cbdf92b609a0858e (patch)
treec0cdb47b73c6b1176d7c3d523c60fc7675e4a3d3 /src/ircd.c
parentc8d4ff56a17d55ad886096c85e03f6ea12734f5d (diff)
Guest nicks, MODE.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1301 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 b7e027456..c749e838f 100644
--- a/src/ircd.c
+++ b/src/ircd.c
@@ -85,12 +85,12 @@ void anope_SendSVSMode(User *u, int ac, const char **av)
ircdproto->SendSVSMode(u, ac, av);
}
-void anope_cmd_guest_nick(const char *nick, const char *user, const char *host, const char *real, const char *modes)
+void anope_SendGuestNick(const char *nick, const char *user, const char *host, const char *real, const char *modes)
{
- ircdproto->cmd_guest_nick(nick, user, host, real, modes);
+ ircdproto->SendGuestNick(nick, user, host, real, modes);
}
-void anope_cmd_mode(const char *source, const char *dest, const char *fmt, ...)
+void anope_SendMode(const char *source, const char *dest, const char *fmt, ...)
{
va_list args;
char buf[BUFSIZE] = "";
@@ -99,7 +99,7 @@ void anope_cmd_mode(const char *source, const char *dest, const char *fmt, ...)
vsnprintf(buf, BUFSIZE - 1, fmt, args);
va_end(args);
}
- ircdproto->cmd_mode(source, dest, buf);
+ ircdproto->SendMode(source, dest, buf);
}
void anope_cmd_bot_nick(const char *nick, const char *user, const char *host, const char *real, const char *modes)