|
|
|
|
@ -1861,6 +1861,16 @@ static int ring_entry(struct queue_ent *qe, struct callattempt *tmp, int *busies
|
|
|
|
|
/* Presense of ADSI CPE on outgoing channel follows ours */
|
|
|
|
|
tmp->chan->adsicpe = qe->chan->adsicpe;
|
|
|
|
|
|
|
|
|
|
/* Inherit context and extension */
|
|
|
|
|
if (!ast_strlen_zero(qe->chan->macrocontext))
|
|
|
|
|
ast_copy_string(tmp->chan->dialcontext, qe->chan->macrocontext, sizeof(tmp->chan->dialcontext));
|
|
|
|
|
else
|
|
|
|
|
ast_copy_string(tmp->chan->dialcontext, qe->chan->context, sizeof(tmp->chan->dialcontext));
|
|
|
|
|
if (!ast_strlen_zero(qe->chan->macroexten))
|
|
|
|
|
ast_copy_string(tmp->chan->exten, qe->chan->macroexten, sizeof(tmp->chan->exten));
|
|
|
|
|
else
|
|
|
|
|
ast_copy_string(tmp->chan->exten, qe->chan->exten, sizeof(tmp->chan->exten));
|
|
|
|
|
|
|
|
|
|
/* Place the call, but don't wait on the answer */
|
|
|
|
|
if ((res = ast_call(tmp->chan, location, 0))) {
|
|
|
|
|
/* Again, keep going even if there's an error */
|
|
|
|
|
|