From: Matthew Jordan Date: Tue, 26 Feb 2013 15:38:05 +0000 (+0000) Subject: Fix typo in r382068 X-Git-Tag: 11.4.0-rc1~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4163b04c42627cba03b10a7d523d763eff95c47f;p=thirdparty%2Fasterisk.git 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 --- diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c index db02642571..f202270739 100644 --- a/apps/app_confbridge.c +++ b/apps/app_confbridge.c @@ -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; }