aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchannels/chan_zap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 7db748e4a..0d46dbb84 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -5609,10 +5609,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 or call complete go to s|1 */
- if (pri->pvt[chan]->immediate || e->ring.complete) {
+ /* If immediate=yes go to s|1 */
+ if (pri->pvt[chan]->immediate) {
if (option_verbose > 2)
- ast_verbose(VERBOSE_PREFIX_3 "Going to extension s|1 because of immediate=yes or Complete received\n");
+ ast_verbose(VERBOSE_PREFIX_3 "Going to extension s|1 because of immediate=yes\n");
strcpy(pri->pvt[chan]->exten, "s");
}
/* Get called number */