From: Mark Spencer Date: Fri, 15 Aug 2003 22:07:15 +0000 (+0000) Subject: Only skip it for immediate mode X-Git-Tag: 0.5.0~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=858ad8ca64c08ee9fda28e6b4fd65e4d91918f90;p=thirdparty%2Fasterisk.git Only skip it for immediate mode git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1344 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index f83fe0c605..7c5680ea3b 100755 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -3777,7 +3777,7 @@ static void *ss_thread(void *data) } dtmfbuf[0] = 0; /* Wait for the first digit only if immediate=no */ - if (((p->sig == SIG_EM) || (p->sig == SIG_EMWINK) || (p->sig == SIG_FEATDMF)) && !p->immediate) + if (!p->immediate) /* Wait for the first digit (up to 5 seconds). */ res = ast_waitfordigit(chan,5000); else res = 0;