dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 57396 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r57396 | russell | 2007-03-01 18:20:44 -0600 (Thu, 01 Mar 2007) | 4 lines

Return the correct digit that interrupted the stream.  This fixes exiting the
Background application when using the m option.
(issue #9176, mjagdis)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@57397 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2007-03-02 00:22:22 +00:00
parent 63cb1131a2
commit d2b807bfa4
1 changed files with 1 additions and 0 deletions

View File

@ -1021,6 +1021,7 @@ static int waitstream_core(struct ast_channel *c, const char *breakon,
if (context) {
const char exten[2] = { fr->subclass, '\0' };
if (ast_exists_extension(c, context, exten, 1, c->cid.cid_num)) {
res = fr->subclass;
ast_frfree(fr);
return res;
}