diff options
-rw-r--r-- | cli/src/cli-cmd-peer.c | 7 | ||||
-rw-r--r-- | cli/src/cli-cmd-system.c | 3 | ||||
-rw-r--r-- | cli/src/cli-cmd-volume.c | 4 |
3 files changed, 1 insertions, 13 deletions
diff --git a/cli/src/cli-cmd-peer.c b/cli/src/cli-cmd-peer.c index 5ae2007f3..1f3ee6240 100644 --- a/cli/src/cli-cmd-peer.c +++ b/cli/src/cli-cmd-peer.c @@ -199,16 +199,11 @@ cli_cmd_peer_help_cbk (struct cli_state *state, struct cli_cmd_word *in_word, { struct cli_cmd *cmd = NULL; - + for (cmd = cli_probe_cmds; cmd->pattern; cmd++) cli_out ("%s - %s", cmd->pattern, cmd->desc); - - - if (!state->rl_enabled) - exit (0); - return 0; } diff --git a/cli/src/cli-cmd-system.c b/cli/src/cli-cmd-system.c index 8d5514474..0c1b6d267 100644 --- a/cli/src/cli-cmd-system.c +++ b/cli/src/cli-cmd-system.c @@ -191,9 +191,6 @@ cli_cmd_system_help_cbk (struct cli_state *state, struct cli_cmd_word *in_word, for (cmd = cli_system_cmds; cmd->pattern; cmd++) cli_out ("%s - %s", cmd->pattern, cmd->desc); - if (!state->rl_enabled) - exit (0); - return 0; } diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c index 7a2109539..ef62e14f9 100644 --- a/cli/src/cli-cmd-volume.c +++ b/cli/src/cli-cmd-volume.c @@ -978,10 +978,6 @@ cli_cmd_volume_help_cbk (struct cli_state *state, struct cli_cmd_word *in_word, for (cmd = volume_cmds; cmd->pattern; cmd++) cli_out ("%s - %s", cmd->pattern, cmd->desc); - - if (!state->rl_enabled) - exit (0); - return 0; } |