From e9cffc55a7b84c6d356283b9167882cc59c950e5 Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Tue, 1 Jul 2003 20:26:22 +0000 Subject: [PATCH] Update for sendingcomplete git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1148 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_zap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 1c1e958385..376d5e65c7 100755 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -5607,10 +5607,10 @@ static void *pri_dchannel(void *vpri) strcpy(pri->pvt[chan]->callerid, ""); strncpy(pri->pvt[chan]->rdnis, e->ring.redirectingnum, sizeof(pri->pvt[chan]->rdnis)); } - /* If immediate=yes go to s|1 */ - if (pri->pvt[chan]->immediate) { + /* If immediate=yes or call complete go to s|1 */ + if (pri->pvt[chan]->immediate || e->ring.complete) { if (option_verbose > 2) - ast_verbose(VERBOSE_PREFIX_3 "Going to extension s|1 because of immediate=yes\n"); + ast_verbose(VERBOSE_PREFIX_3 "Going to extension s|1 because of immediate=yes or Complete received\n"); strcpy(pri->pvt[chan]->exten, "s"); } /* Get called number */ -- GitLab