summaryrefslogtreecommitdiff
path: root/src/core/ns_suspend.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ns_suspend.c')
-rw-r--r--src/core/ns_suspend.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/ns_suspend.c b/src/core/ns_suspend.c
index 49f669484..f26aad0ec 100644
--- a/src/core/ns_suspend.c
+++ b/src/core/ns_suspend.c
@@ -14,9 +14,9 @@
#include "module.h"
-int do_suspend(User * u);
-int do_unsuspend(User * u);
-void myNickServHelp(User * u);
+static int do_suspend(User * u);
+static int do_unsuspend(User * u);
+static void myNickServHelp(User * u);
/**
* Create the command, and tell anope about it.
@@ -60,7 +60,7 @@ void AnopeFini(void)
* Add the help response to anopes /ns help output.
* @param u The user who is requesting help
**/
-void myNickServHelp(User * u)
+static void myNickServHelp(User * u)
{
if (is_services_oper(u)) {
notice_lang(s_NickServ, u, NICK_HELP_CMD_SUSPEND);
@@ -73,7 +73,7 @@ void myNickServHelp(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_suspend(User * u)
+static int do_suspend(User * u)
{
NickAlias *na, *na2;
User *u2;
@@ -151,7 +151,7 @@ int do_suspend(User * u)
/*************************************************************************/
-int do_unsuspend(User * u)
+static int do_unsuspend(User * u)
{
NickAlias *na;
char *nick = strtok(NULL, " ");