Fix typo in r382068

Well, that was embarrassing. Removed an '-l' that somehow got in there.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@382069 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Matthew Jordan
2013-02-26 15:38:05 +00:00
parent d9f20617d0
commit 4163b04c42

View File

@@ -2354,7 +2354,7 @@ static char *handle_cli_confbridge_mute(struct ast_cli_entry *e, int cmd, struct
return complete_confbridge_name(a->line, a->word, a->pos, a->n);
}
if (a->pos == 3) {
return complete_confbridge_participantl(a->argv[2], a->line, a->word, a->pos, a->n);
return complete_confbridge_participant(a->argv[2], a->line, a->word, a->pos, a->n);
}
return NULL;
}
@@ -2381,7 +2381,7 @@ static char *handle_cli_confbridge_unmute(struct ast_cli_entry *e, int cmd, stru
return complete_confbridge_name(a->line, a->word, a->pos, a->n);
}
if (a->pos == 3) {
return complete_confbridge_participantl(a->argv[2], a->line, a->word, a->pos, a->n);
return complete_confbridge_participant(a->argv[2], a->line, a->word, a->pos, a->n);
}
return NULL;
}