Fix the bug when Sending Complete IE is sent or not sent (i don't remember) asterisk would jump to s|1

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1233 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Martin Pycko 22 years ago
parent 57d8ea696c
commit 19f4f3c36c

@ -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 */

Loading…
Cancel
Save