From d2d88e0f3dbbebf68e174bfc38af8ef3b5e9106e Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Mon, 3 Dec 2007 20:59:51 +0000 Subject: [PATCH] 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/branches/1.4@90639 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_mgcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c index 675148b6df..85ad6abae2 100644 --- a/channels/chan_mgcp.c +++ b/channels/chan_mgcp.c @@ -2619,7 +2619,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; }