From: Anthony Minessale II Date: Sun, 6 Jun 2004 02:30:10 +0000 (+0000) Subject: fix D() issue with to short of a duration X-Git-Tag: 1.0.0-rc1~303 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc36c3d475099efaf1ce0f431f4428a4ba16c28d;p=thirdparty%2Fasterisk.git fix D() issue with to short of a duration git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3152 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dial.c b/apps/app_dial.c index 03bbbbb9a2..3f145ae015 100755 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -857,7 +857,7 @@ static int dial_exec(struct ast_channel *chan, void *data) chan->whentohangup = now + calldurationlimit; } if (!ast_strlen_zero(sdtmfdata)) - res = ast_dtmf_stream(peer,chan,sdtmfdata,0); + res = ast_dtmf_stream(peer,chan,sdtmfdata,250); } if (!res) {