aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_zap.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-02 03:32:07 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-02 03:32:07 +0000
commita56dcba8e2557ee2c76ef4a8d4b2bc5d896b240c (patch)
tree9058922c204484c389bbe00aba8312fdba610c3f /channels/chan_zap.c
parentd7ffa7f7a1715acfb16c15d6dbcec6f185d5284d (diff)
Fix threeway calling + immediate mode (bug #2344)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3705 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_zap.c')
-rwxr-xr-xchannels/chan_zap.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index ac0c268de..a061712ed 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -4760,7 +4760,12 @@ static void *ss_thread(void *data)
if (p->subs[SUB_THREEWAY].owner)
timeout = 999999;
while(len < AST_MAX_EXTENSION-1) {
- res = ast_waitfordigit(chan, timeout);
+ /* Read digit unless it's supposed to be immediate, in which case the
+ only answer is 's' */
+ if (p->immediate)
+ res = 's';
+ else
+ res = ast_waitfordigit(chan, timeout);
timeout = 0;
if (res < 0) {
ast_log(LOG_DEBUG, "waitfordigit returned < 0...\n");