mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
Add a verbose message for those that have immediate=yes on the PRI
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1070 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -5608,8 +5608,11 @@ static void *pri_dchannel(void *vpri)
|
||||
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 (pri->pvt[chan]->immediate) {
|
||||
if (option_verbose > 2)
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Going to extension s|1 because of immediate=yes\n");
|
||||
strcpy(pri->pvt[chan]->exten, "s");
|
||||
}
|
||||
/* Get called number */
|
||||
else if (strlen(e->ring.callednum)) {
|
||||
strncpy(pri->pvt[chan]->exten, e->ring.callednum, sizeof(pri->pvt[chan]->exten)-1);
|
||||
|
Reference in New Issue
Block a user