diff options
author | Venkatesh Somyajulu <vsomyaju@redhat.com> | 2013-06-27 15:47:01 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-07-03 22:29:52 -0700 |
commit | 291344f9c80fe1a3c0fe784a1642da6795dcf5a4 (patch) | |
tree | e4df5809d8c9b5351e73c3a040e0b3465636751e /cli | |
parent | 0aa4248cf967b158c0cf6ce33c300ad4b3ee3249 (diff) |
cli: Fix in letter case in volume heal output
Change-Id: I25d13444c2cbff9b26642e91677ad1e09e77aa1e
BUG: 978936
Signed-off-by: Venkatesh Somyajulu <vsomyaju@redhat.com>
Reviewed-on: http://review.gluster.org/5259
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'cli')
-rw-r--r-- | cli/src/cli-rpc-ops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c index 1ef23a327be..d5256f128c7 100644 --- a/cli/src/cli-rpc-ops.c +++ b/cli/src/cli-rpc-ops.c @@ -6335,10 +6335,10 @@ gf_cli_heal_volume_cbk (struct rpc_req *req, struct iovec *iov, if ((heal_op == GF_AFR_OP_HEAL_FULL) || (heal_op == GF_AFR_OP_HEAL_INDEX)) { - operation = "Launching Heal operation"; + operation = "Launching heal operation"; substr = "\nUse heal info commands to check status"; } else { - operation = "Gathering Heal info"; + operation = "Gathering heal info"; substr = ""; } |