mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 15:49:56 +00:00
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:
@@ -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);
|
return complete_confbridge_name(a->line, a->word, a->pos, a->n);
|
||||||
}
|
}
|
||||||
if (a->pos == 3) {
|
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;
|
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);
|
return complete_confbridge_name(a->line, a->word, a->pos, a->n);
|
||||||
}
|
}
|
||||||
if (a->pos == 3) {
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user