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:28:10 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 08:28:10 +0000
commitd5d6b049e0ef4ab05a5bfdd632af645190dba457 (patch)
treea28192e95a261e15381af712178b64a724bff84b /src/ircd.c
parent8a3495279c31c0a5a16aa69409b4d3ec038653eb (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/ircd.c')
-rw-r--r--src/ircd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ircd.c b/src/ircd.c
index 9e33c8f0b..ac53b6716 100644
--- a/src/ircd.c
+++ b/src/ircd.c
@@ -43,14 +43,14 @@ void anope_set_umode(User *user, int ac, const char **av)
ircdproto->set_umode(user, ac, av);
}
-void anope_cmd_svsnoop(const char *server, int set)
+void anope_SendSVSNOOP(const char *server, int set)
{
- ircdproto->cmd_svsnoop(server, set);
+ ircdproto->SendSVSNOOP(server, set);
}
-void anope_cmd_remove_akill(const char *user, const char *host)
+void anope_SendAkillDel(const char *user, const char *host)
{
- ircdproto->cmd_remove_akill(user, host);
+ ircdproto->SendAkillDel(user, host);
}
void anope_cmd_topic(const char *whosets, const char *chan, const char *whosetit, const char *topic, time_t when)
@@ -58,9 +58,9 @@ void anope_cmd_topic(const char *whosets, const char *chan, const char *whosetit
ircdproto->cmd_topic(whosets, chan, whosetit, topic, when);
}
-void anope_cmd_vhost_off(User *u)
+void anope_SendVhostDel(User *u)
{
- ircdproto->cmd_vhost_off(u);
+ ircdproto->SendVhostDel(u);
}
void anope_cmd_akill(const char *user, const char *host, const char *who, time_t when, time_t expires, const char *reason)