summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-11-27 11:32:06 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-11-27 11:32:06 -0600
commit635583dabd77a9da420c2e1b0474262fb4a18303 (patch)
treefcc2df08cd0c09bedf41c9dc6132eab61db7c9d2 /main
parent9cbcd8958745fd48435e5b36d243295836160116 (diff)
parent115f53a0fb19138f07ca0c03f06f4a557d663f1f (diff)
Merge "CLI: Remove calls to ast_cli_generator." into 13
Diffstat (limited to 'main')
-rw-r--r--main/cli.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/main/cli.c b/main/cli.c
index f3411860c..94ea95956 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -2463,18 +2463,17 @@ static char *parse_args(const char *s, int *argc, const char *argv[], int max, i
/*! \brief Return the number of unique matches for the generator */
int ast_cli_generatornummatches(const char *text, const char *word)
{
- int matches = 0, i = 0;
- char *buf = NULL, *oldbuf = NULL;
-
- while ((buf = ast_cli_generator(text, word, i++))) {
- if (!oldbuf || strcmp(buf,oldbuf))
- matches++;
- if (oldbuf)
- ast_free(oldbuf);
- oldbuf = buf;
- }
- if (oldbuf)
- ast_free(oldbuf);
+ int matches;
+ struct ast_vector_string *vec = ast_cli_completion_vector(text, word);
+
+ if (!vec) {
+ return 0;
+ }
+
+ matches = AST_VECTOR_SIZE(vec) - 1;
+ AST_VECTOR_CALLBACK_VOID(vec, ast_free);
+ AST_VECTOR_PTR_FREE(vec);
+
return matches;
}