Merge "res_indications: Fix indications remove command autocomplete" into 13

This commit is contained in:
Friendly Automation
2019-04-22 08:48:50 -05:00
committed by Gerrit Code Review

View File

@@ -780,9 +780,11 @@ static char *handle_cli_indication_remove(struct ast_cli_entry *e, int cmd, stru
case CLI_GENERATE:
if (a->pos == 2) {
return complete_country(a);
} else if (a->pos == 3) {
}
if (a->pos == 3) {
return complete_indications(a);
}
return NULL;
}
if (a->argc != 3 && a->argc != 4) {