diff options
Diffstat (limited to 'cli/src/cli-cmd-system.c')
-rw-r--r-- | cli/src/cli-cmd-system.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/cli/src/cli-cmd-system.c b/cli/src/cli-cmd-system.c index 0c1b6d267..e92376cef 100644 --- a/cli/src/cli-cmd-system.c +++ b/cli/src/cli-cmd-system.c @@ -129,14 +129,8 @@ out: return ret; } -void -cli_cmd_fsm_log_usage () -{ - cli_out ("Usage: fsm log [<peer-name>]"); -} - int -cli_cmd_fsm_log (struct cli_state *state, struct cli_cmd_word *in_word, +cli_cmd_fsm_log (struct cli_state *state, struct cli_cmd_word *word, const char **words, int wordcount) { int ret = -1; @@ -145,7 +139,7 @@ cli_cmd_fsm_log (struct cli_state *state, struct cli_cmd_word *in_word, char *name = ""; if ((wordcount != 3) && (wordcount != 2)) { - cli_cmd_fsm_log_usage (); + cli_usage_out (word->pattern); goto out; } |