Index: apps/app_mixmonitor.c =================================================================== --- apps/app_mixmonitor.c (revision 66979) +++ apps/app_mixmonitor.c (working copy) @@ -420,6 +420,11 @@ static char *complete_mixmonitor_cli(const char *line, const char *word, int pos, int state) { + char *options[] = {"start", "stop", NULL}; + + if (pos == 1) + return ast_cli_complete (word, options, state); + return ast_complete_channels(line, word, pos, state, 2); }