diff options
author | Kaushal M <kaushal@redhat.com> | 2012-06-05 15:07:23 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-06-05 10:47:11 -0700 |
commit | ada4ab0bb93d00fcccbd566cb9cce8265ecf7c67 (patch) | |
tree | 100011d00e08a7e90c36a3fbd074959539257c45 /cli | |
parent | 73366888815d308feb0393775db0dc5ea8f5a026 (diff) |
cli: Fix error output for peer probe on address validation failure
Displays an error message and sets proper return value on failure of address
validation in peer probe.
Change-Id: I5ced5524040e19a95dc832b6f676874983d0f2a7
BUG: 817648
Signed-off-by: Kaushal M <kaushal@redhat.com>
Reviewed-on: http://review.gluster.com/3520
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'cli')
-rw-r--r-- | cli/src/cli-cmd-peer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/src/cli-cmd-peer.c b/cli/src/cli-cmd-peer.c index 4ac1630e5..9b4786611 100644 --- a/cli/src/cli-cmd-peer.c +++ b/cli/src/cli-cmd-peer.c @@ -76,8 +76,10 @@ cli_cmd_peer_probe_cbk (struct cli_state *state, struct cli_cmd_word *word, if (ret == 1) { ret = 0; } else { + cli_out ("%s is an invalid address", words[2]); cli_usage_out (word->pattern); parse_error = 1; + ret = -1; goto out; } /* if (words[3]) { |