diff options
| -rw-r--r-- | cli/src/cli-cmd-parser.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c index 6d84fec099c..393af341635 100644 --- a/cli/src/cli-cmd-parser.c +++ b/cli/src/cli-cmd-parser.c @@ -1171,6 +1171,12 @@ cli_cmd_quota_parse (const char **words, int wordcount, dict_t **options)                  type = GF_QUOTA_OPTION_TYPE_LIST; +                if (words[4] && words[4][0] != '/') { +                        cli_err ("Please enter absolute path"); +                        ret = -1; +                        goto out; +                } +                  i = 4;                  while (i < wordcount) {                          snprintf (key, 20, "path%d", i-4);  | 
