summaryrefslogtreecommitdiff
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorAnthony Minessale II <anthmct@yahoo.com>2004-06-06 02:30:10 +0000
committerAnthony Minessale II <anthmct@yahoo.com>2004-06-06 02:30:10 +0000
commitcc36c3d475099efaf1ce0f431f4428a4ba16c28d (patch)
tree3e3a7fe6c3d7d4f362a84396de02a103327e5cf8 /apps/app_dial.c
parenta550016fd6b2a57e460cb714efb9f44ef57d9d39 (diff)
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
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) {