From: Alec L Davis Date: Tue, 15 Dec 2009 00:54:44 +0000 (+0000) Subject: ast_stream_and_wait(chan,dir-usingkeypad) didn't capture the dialled DTMF. X-Git-Tag: 11.0.0-beta1~3730 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19f808065405fccb3d5f659d512c2eb6af3313b6;p=thirdparty%2Fasterisk.git ast_stream_and_wait(chan,dir-usingkeypad) didn't capture the dialled DTMF. (closes issue #16409) Reported by: alecdavis Tested by: alecdavis Patch bug_16409.diff.txt uploaded by alecdavis (license 585) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@234855 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_directory.c b/apps/app_directory.c index 34001ad514..deca039226 100644 --- a/apps/app_directory.c +++ b/apps/app_directory.c @@ -808,7 +808,7 @@ static int directory_exec(struct ast_channel *chan, const char *data) "dir-firstlast", AST_DIGIT_ANY); } if (!res) { - ast_stream_and_wait(chan, "dir-usingkeypad", AST_DIGIT_ANY); + res = ast_stream_and_wait(chan, "dir-usingkeypad", AST_DIGIT_ANY); } } ast_stopstream(chan);