aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authoranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-06 02:30:10 +0000
committeranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-06 02:30:10 +0000
commitc15a46e7eae47114ae37e0c24717cc22546c09c1 (patch)
tree3e3a7fe6c3d7d4f362a84396de02a103327e5cf8 /apps/app_dial.c
parentce83a1acc92155bde1d84fb64886aa1ac8b0f004 (diff)
fix D() issue with to short of a duration
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3152 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_dial.c')
-rwxr-xr-xapps/app_dial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 03bbbbb9a..3f145ae01 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) {