When detecting a hairpin, redirect to the appropriate local extension (bug #1974)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3662 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-08-27 03:16:16 +00:00
parent f1be7d7ffc
commit cab4557006
2 changed files with 12 additions and 3 deletions

View File

@@ -250,10 +250,11 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
if (!o->chan->callerid)
ast_log(LOG_WARNING, "Out of memory\n");
} else {
if (in->callerid)
if (in->callerid) {
o->chan->callerid = strdup(in->callerid);
if (!o->chan->callerid)
ast_log(LOG_WARNING, "Out of memory\n");
if (!o->chan->callerid)
ast_log(LOG_WARNING, "Out of memory\n");
}
strncpy(o->chan->accountcode, in->accountcode, sizeof(o->chan->accountcode) - 1);
o->chan->cdrflags = in->cdrflags;
}