mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
A little adjustment to the previous one (passing the clid&ani on call_forward)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2044 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -203,11 +203,15 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
|
|||||||
o->stillgoing = 0;
|
o->stillgoing = 0;
|
||||||
numbusies++;
|
numbusies++;
|
||||||
} else {
|
} else {
|
||||||
if (in->callerid && !o->chan->callerid) {
|
if (in->callerid) {
|
||||||
|
if (o->chan->callerid)
|
||||||
|
free(o->chan->callerid);
|
||||||
o->chan->callerid = malloc(strlen(in->callerid) + 1);
|
o->chan->callerid = malloc(strlen(in->callerid) + 1);
|
||||||
strncpy(o->chan->callerid, in->callerid, strlen(in->callerid) + 1);
|
strncpy(o->chan->callerid, in->callerid, strlen(in->callerid) + 1);
|
||||||
}
|
}
|
||||||
if (in->ani && !o->chan->ani) {
|
if (in->ani) {
|
||||||
|
if (o->chan->ani)
|
||||||
|
free(o->chan->ani);
|
||||||
o->chan->ani = malloc(strlen(in->ani) + 1);
|
o->chan->ani = malloc(strlen(in->ani) + 1);
|
||||||
strncpy(o->chan->ani, in->ani, strlen(in->ani) + 1);
|
strncpy(o->chan->ani, in->ani, strlen(in->ani) + 1);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user