Merged revisions 90639 via svnmerge from

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

........
r90639 | mmichelson | 2007-12-03 14:59:51 -0600 (Mon, 03 Dec 2007) | 5 lines

Changing some bad logic when calculating the interdigit timeout.

(closes issue #11402, reported and patched by eferro)


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@90644 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson 2007-12-03 21:00:44 +00:00
parent 63342693ae
commit 06f67fbc3c
1 changed files with 1 additions and 1 deletions

View File

@ -2623,7 +2623,7 @@ static void *mgcp_ss(void *data)
while (strlen(p->dtmf_buf) == len){
ast_safe_sleep(chan, loop_pause);
timeout -= loop_pause;
if ( (timeout -= loop_pause) <= 0){
if (timeout <= 0){
res = 0;
break;
}