From 1637eabfd3e953a609cd5c82f58a7daa9d88b243 Mon Sep 17 00:00:00 2001 From: Pranith K Date: Mon, 13 Dec 2010 06:06:20 +0000 Subject: cli: remove duplication of cmd help Signed-off-by: Pranith Kumar K Signed-off-by: Anand V. Avati BUG: 2089 (Documentation bug in replace-brick options) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2089 --- cli/src/cli-cmd-peer.c | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) (limited to 'cli/src/cli-cmd-peer.c') 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 "); -} - -void -cli_cmd_deprobe_usage () -{ - cli_out ("Usage: detach "); -} - -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; } -- cgit