From f653bfa1f3eb250851cfe82780c3af29fc2630e2 Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Tue, 17 Sep 2013 16:11:20 +0000 Subject: Switch transferdigittimeout to be configured as seconds instead of milliseconds. This was an unintentional consequence of the update of features.conf to use the config framework in Asterisk 12. Thanks to Marco Signorini on the Asterisk developers list for pointing out the problem. ........ Merged revisions 399237 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@399238 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/bridge_basic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/bridge_basic.c') diff --git a/main/bridge_basic.c b/main/bridge_basic.c index aaa77caea..7cac8d733 100644 --- a/main/bridge_basic.c +++ b/main/bridge_basic.c @@ -2866,7 +2866,7 @@ static int grab_transfer(struct ast_channel *chan, char *exten, size_t exten_len ast_channel_unlock(chan); return -1; } - digit_timeout = xfer_cfg->transferdigittimeout; + digit_timeout = xfer_cfg->transferdigittimeout * 1000; ast_channel_unlock(chan); /* Play the simple "transfer" prompt out and wait */ -- cgit v1.2.3