From 7eada71e1b8e707d5b97d4d0cf7d2ca73013e403 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 18 Nov 2014 07:35:30 +0100 Subject: shell: Add mode, UID and GID to shell commands Use this information to determine if a command is visible to the current user and if the current user is allowed to execute this command. --- cpukit/libmisc/shell/cmds.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'cpukit/libmisc/shell/cmds.c') diff --git a/cpukit/libmisc/shell/cmds.c b/cpukit/libmisc/shell/cmds.c index 7c9e21dcfc..6e3e0c1ec2 100644 --- a/cpukit/libmisc/shell/cmds.c +++ b/cpukit/libmisc/shell/cmds.c @@ -50,15 +50,13 @@ static bool rtems_shell_register_command(const rtems_monitor_command_entry_t *e, /* Exclude EXIT (alias quit)*/ if (strcmp("exit", e->command) != 0) { rtems_shell_cmd_t *shell_cmd = - (rtems_shell_cmd_t *) malloc(sizeof(rtems_shell_cmd_t)); + (rtems_shell_cmd_t *) calloc(1, sizeof(*shell_cmd)); if (shell_cmd != NULL) { shell_cmd->name = e->command; shell_cmd->topic = "monitor"; shell_cmd->usage = e->usage; shell_cmd->command = rtems_shell_main_monitor; - shell_cmd->alias = NULL; - shell_cmd->next = NULL; if (rtems_shell_add_cmd_struct(shell_cmd) == NULL) { free(shell_cmd); -- cgit v1.2.3