diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:09 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:09 +0000 |
commit | aa806eba53a7ccc715839bd972c9b158f39b6225 (patch) | |
tree | 8e29db334836fbcf4ab869209f34907821f1dacd /src/users.c | |
parent | c5e113ee056b28ff39232f28faf208163c6c86f0 (diff) |
Constify a lot of the API. Core now "builds".
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1182 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/users.c')
-rw-r--r-- | src/users.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/users.c b/src/users.c index cf794ceca..ca4bd02b4 100644 --- a/src/users.c +++ b/src/users.c @@ -785,7 +785,7 @@ User *do_nick(const char *source, char *nick, char *username, char *host, * av[1] = modes */ -void do_umode(const char *source, int ac, char **av) +void do_umode(const char *source, int ac, const char **av) { User *user; @@ -803,7 +803,7 @@ void do_umode(const char *source, int ac, char **av) * av[0] = modes */ -void do_umode2(const char *source, int ac, char **av) +void do_umode2(const char *source, int ac, const char **av) { User *user; @@ -858,7 +858,7 @@ void do_quit(const char *source, int ac, char **av) * av[1] = reason */ -void do_kill(char *nick, char *msg) +void do_kill(const char *nick, const char *msg) { User *user; NickAlias *na; |