diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/command.c | 4 | ||||
-rw-r--r-- | src/command.h | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/command.c b/src/command.c index 0817b983f..f32a03466 100644 --- a/src/command.c +++ b/src/command.c @@ -131,8 +131,8 @@ struct _CommandEntry { CommandListHandlerFunction listHandler; }; -char *current_command = NULL; -int command_listNum = 0; +static char *current_command = NULL; +static int command_listNum = 0; static CommandEntry *getCommandEntryFromString(char *string, int *permission); diff --git a/src/command.h b/src/command.h index fdb1e0869..6cdc4ed44 100644 --- a/src/command.h +++ b/src/command.h @@ -34,9 +34,6 @@ #define COMMAND_RETURN_CLOSE 20 #define COMMAND_MASTER_READY 30 -extern char *current_command; -extern int command_listNum; - int processListOfCommands(int fd, int *permission, int *expired, int listOK, struct strnode *list); |