dect
/
asterisk
Archived
13
0
Fork 0

Fixes warning message caused by confbridge playback chan not being answered.

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@325937 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
dvossel 2011-06-30 21:05:54 +00:00
parent 08f745838d
commit e48910abf4
1 changed files with 3 additions and 0 deletions

View File

@ -229,6 +229,9 @@ static struct ast_channel *bridge_request(const char *type, struct ast_format_ca
ast_format_copy(&p->input->rawwriteformat, &slin);
ast_format_copy(&p->output->rawwriteformat, &slin);
ast_answer(p->output);
ast_answer(p->input);
return p->input;
}