diff options
author | Adam <Adam@anope.org> | 2012-09-21 21:39:32 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-09-21 21:39:32 -0400 |
commit | 3779ed916a1bf70d744a7ba6ac5fa31862057d0f (patch) | |
tree | 0e1f5f3b2b8c36eefa8e52872fb2164fa5569075 /src/core/cs_logout.c | |
parent | 3f05a42515b588b508419040e71b74ea2a27f1d0 (diff) |
Made all module functions static to fix OSX's linker from linking
modules with similar function names to each other which causes
complete and total chaos.
Diffstat (limited to 'src/core/cs_logout.c')
-rw-r--r-- | src/core/cs_logout.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/cs_logout.c b/src/core/cs_logout.c index 597213d8a..e20ac4d94 100644 --- a/src/core/cs_logout.c +++ b/src/core/cs_logout.c @@ -14,9 +14,9 @@ #include "module.h" -int do_logout(User * u); -void myChanServHelp(User * u); -void make_unidentified(User * u, ChannelInfo * ci); +static int do_logout(User * u); +static void myChanServHelp(User * u); +static void make_unidentified(User * u, ChannelInfo * ci); /** * Create the command, and tell anope about it. @@ -56,7 +56,7 @@ void AnopeFini(void) * Add the help response to anopes /cs help output. * @param u The user who is requesting help **/ -void myChanServHelp(User * u) +static void myChanServHelp(User * u) { notice_lang(s_ChanServ, u, CHAN_HELP_CMD_LOGOUT); } @@ -66,7 +66,7 @@ void myChanServHelp(User * u) * @param u The user who issued the command * @param MOD_CONT to continue processing other modules, MOD_STOP to stop processing. **/ -int do_logout(User * u) +static int do_logout(User * u) { char *chan = strtok(NULL, " "); char *nick = strtok(NULL, " "); @@ -108,7 +108,7 @@ int do_logout(User * u) return MOD_CONT; } -void make_unidentified(User * u, ChannelInfo * ci) +static void make_unidentified(User * u, ChannelInfo * ci) { struct u_chaninfolist *uci; |