summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-12-18 13:23:46 -0500
committerCorey Farrell <git@cfware.com>2017-12-18 13:23:46 -0500
commit731a23fba76d51cfef139895964d2dbe7af12afc (patch)
treef79bc1fbbef1df0311b840ab5c0a471182c4c224
parenteb23919e69a309d44e86d529e094671fe55da6ca (diff)
CLI: Fix 'core set debug channel' completion bug.
The completion generator is missing a return so typing "core set debug all off <tab>" causes the command to actually execute. Change-Id: Ibf6462088a74eee66967732b50445783ebefc20b
-rw-r--r--main/cli.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/cli.c b/main/cli.c
index 75846b8c9..207d1f830 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -1391,6 +1391,8 @@ static char *handle_core_set_debug_channel(struct ast_cli_entry *e, int cmd, str
} else if (a->pos == 5) {
return ast_cli_complete(a->word, completions_off, a->n);
}
+
+ return NULL;
}
if (cmd == (CLI_HANDLER + 1000)) {