summaryrefslogtreecommitdiff
path: root/src/protocol/ratbox.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 14:20:56 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 14:20:56 +0000
commit4fbf03aabab32764a7609288bf53f6691ce98267 (patch)
treefaccafd38f14811a88b5082c1fa84697acd3145a /src/protocol/ratbox.c
parente87a9e0ac602ab15ca7ef85941b0632aadc324ec (diff)
set_umode -> ProcessUsermodes
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1314 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/ratbox.c')
-rw-r--r--src/protocol/ratbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c
index 01f84c4a6..30f40682a 100644
--- a/src/protocol/ratbox.c
+++ b/src/protocol/ratbox.c
@@ -145,7 +145,7 @@ IRCDCAPAB myIrcdcap[] = {
0, 0, 0}
};
-void RatboxProto::set_umode(User *user, int ac, const char **av)
+void RatboxProto::ProcessUsermodes(User *user, int ac, const char **av)
{
int add = 1; /* 1 if adding modes, 0 if deleting */
const char *modes = av[0];
@@ -500,14 +500,14 @@ int anope_event_nick(const char *source, int ac, const char **av)
user = do_nick("", av[0], av[4], av[5], s->name, av[8],
strtoul(av[2], NULL, 10), 0, 0, "*", av[7]);
if (user) {
- anope_set_umode(user, 1, &av[3]);
+ anope_ProcessUsermodes(user, 1, &av[3]);
}
} else {
if (ac != 2) {
user = do_nick(source, av[0], av[4], av[5], av[6], av[7],
strtoul(av[2], NULL, 10), 0, 0, "*", NULL);
if (user)
- anope_set_umode(user, 1, &av[3]);
+ anope_ProcessUsermodes(user, 1, &av[3]);
} else {
do_nick(source, av[0], NULL, NULL, NULL, NULL,
strtoul(av[1], NULL, 10), 0, 0, NULL, NULL);