From 06f67fbc3c071a4f1c5a62e103506656d546244d Mon Sep 17 00:00:00 2001
From: Mark Michelson <mmichelson@digium.com>
Date: Mon, 3 Dec 2007 21:00:44 +0000
Subject: [PATCH] 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
---
 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 d736a6226d..ae7a3ed14b 100644
--- a/channels/chan_mgcp.c
+++ b/channels/chan_mgcp.c
@@ -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;
 			}
-- 
GitLab