main/file.c: Don't throw error on flash event.

AST_CONTROL_FLASH isn't accounted for in a switch statement in file.c
where it should be ignored. Adding this to the switch ensures a
warning isn't thrown on RFC2833 flash events, since nothing's amiss.

ASTERISK-29372

Change-Id: I4fa549bfb7ba1894a4044de999ea124877422fbc
This commit is contained in:
Naveen Albert 2021-05-13 11:13:55 -04:00 committed by N A
parent 78d7862463
commit 283fa3a93b
1 changed files with 1 additions and 0 deletions

View File

@ -1702,6 +1702,7 @@ static int waitstream_core(struct ast_channel *c,
case AST_CONTROL_AOC:
case AST_CONTROL_UPDATE_RTP_PEER:
case AST_CONTROL_PVT_CAUSE_CODE:
case AST_CONTROL_FLASH:
case -1:
/* Unimportant */
break;