diff options
Diffstat (limited to 'cli/src/cli-cmd-parser.c')
| -rw-r--r-- | cli/src/cli-cmd-parser.c | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c index 547f1d90f01..33a6c0104b0 100644 --- a/cli/src/cli-cmd-parser.c +++ b/cli/src/cli-cmd-parser.c @@ -1810,6 +1810,13 @@ cli_cmd_gsync_set_parse (const char **words, int wordcount, dict_t **options)                  if (slavei == 3)                          masteri = 2;          } else if (i <= 3) { +                if (!strcmp ((char *)words[wordcount-1], "detail")) { +                        /* For status detail it is mandatory to provide +                         * both master and slave */ +                        ret = -1; +                        goto out; +                } +                  /* no $s, can only be status cmd                   * (with either a single $m before it or nothing)                   * -- these conditions imply that i <= 3 after  | 
