diff options
author | Pranith K <pranithk@gluster.com> | 2010-12-13 06:06:20 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-12-14 19:42:10 -0800 |
commit | 1637eabfd3e953a609cd5c82f58a7daa9d88b243 (patch) | |
tree | cc89fb22c072d845a7927e244952ebf36866da7b /cli/src/cli-cmd-peer.c | |
parent | b754e531b48113596fddcd7d0b433ebcbf016c27 (diff) |
cli: remove duplication of cmd help
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 2089 (Documentation bug in replace-brick options)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2089
Diffstat (limited to 'cli/src/cli-cmd-peer.c')
-rw-r--r-- | cli/src/cli-cmd-peer.c | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/cli/src/cli-cmd-peer.c b/cli/src/cli-cmd-peer.c index 1f3ee6240..dc361f539 100644 --- a/cli/src/cli-cmd-peer.c +++ b/cli/src/cli-cmd-peer.c @@ -40,24 +40,6 @@ extern rpc_clnt_prog_t *cli_rpc_prog; int cli_cmd_peer_help_cbk (struct cli_state *state, struct cli_cmd_word *in_word, const char **words, int wordcount); -void -cli_cmd_probe_usage () -{ - cli_out ("Usage: probe <hostname>"); -} - -void -cli_cmd_deprobe_usage () -{ - cli_out ("Usage: detach <hostname>"); -} - -void -cli_cmd_peer_status_usage () -{ - cli_out ("Usage: peer status"); -} - int cli_cmd_peer_probe_cbk (struct cli_state *state, struct cli_cmd_word *word, const char **words, int wordcount) @@ -68,7 +50,7 @@ cli_cmd_peer_probe_cbk (struct cli_state *state, struct cli_cmd_word *word, dict_t *dict = NULL; if (!(wordcount == 3)) { - cli_cmd_probe_usage (); + cli_usage_out (word->pattern); goto out; } @@ -113,7 +95,7 @@ cli_cmd_peer_deprobe_cbk (struct cli_state *state, struct cli_cmd_word *word, dict_t *dict = NULL; if (!(wordcount == 3) ) { - cli_cmd_deprobe_usage (); + cli_usage_out (word->pattern); goto out; } @@ -152,7 +134,7 @@ cli_cmd_peer_status_cbk (struct cli_state *state, struct cli_cmd_word *word, call_frame_t *frame = NULL; if (wordcount != 2) { - cli_cmd_peer_status_usage (); + cli_usage_out (word->pattern); goto out; } |