diff options
| author | Kaushik BV <kaushikbv@gluster.com> | 2011-07-15 01:20:08 +0000 | 
|---|---|---|
| committer | Anand Avati <avati@gluster.com> | 2011-07-17 07:46:18 -0700 | 
| commit | 3c6138dbf2ed6ebba6b8108be8f4999ff8226964 (patch) | |
| tree | b0d4f0f18b2cee10785cd823fe2b387a0cdb3a4d /cli/src/cli-cmd-parser.c | |
| parent | f1b0e963976208cc93e69fc627a81a6f4ab1640b (diff) | |
mgmt/Glusterd: Implementation volume set help/help-xml
Signed-off-by: Kaushik BV <kaushikbv@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2041 (volume set help option)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2041
Diffstat (limited to 'cli/src/cli-cmd-parser.c')
| -rw-r--r-- | cli/src/cli-cmd-parser.c | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c index 8cfdc808a14..1d5bf40d8f5 100644 --- a/cli/src/cli-cmd-parser.c +++ b/cli/src/cli-cmd-parser.c @@ -370,7 +370,7 @@ cli_cmd_volume_set_parse (const char **words, int wordcount, dict_t **options)          if (!dict)                  goto out; -        if (wordcount < 4) +        if (wordcount < 3)                  goto out;          volname = (char *)words[2]; @@ -382,6 +382,11 @@ cli_cmd_volume_set_parse (const char **words, int wordcount, dict_t **options)          if (ret)                  goto out; +        if (!strcmp (volname, "help") && !words[3] && !words[4]) +                ret = dict_set_str (dict, "help", volname); + +        if (!strcmp (volname, "help-xml") && !words[3] && !words[4]) +                ret = dict_set_str (dict, "help-xml", volname);          for (i = 3; i < wordcount; i+=2) {  | 
