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:
Martin Pycko
2004-01-15 23:38:23 +00:00
parent e993855421
commit 3d40b1c03f

View File

@@ -203,11 +203,15 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
o->stillgoing = 0;
numbusies++;
} 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);
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);
strncpy(o->chan->ani, in->ani, strlen(in->ani) + 1);
}