From a48962b43d621ba59eef3800c19e384c92aabe6e Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Thu, 24 Apr 2008 19:55:55 +0000 Subject: [PATCH] Merged revisions 114622 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r114622 | tilghman | 2008-04-24 14:54:57 -0500 (Thu, 24 Apr 2008) | 12 lines Merged revisions 114621 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r114621 | tilghman | 2008-04-24 14:53:36 -0500 (Thu, 24 Apr 2008) | 4 lines Ensure that when we set the accountcode, it actually shows up in the CDR. (Fix for AMI Originate) (Closes issue #12007) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@114623 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_local.c | 1 + 1 file changed, 1 insertion(+) diff --git a/channels/chan_local.c b/channels/chan_local.c index ffd25bc33a..19824f45a7 100644 --- a/channels/chan_local.c +++ b/channels/chan_local.c @@ -477,6 +477,7 @@ static int local_call(struct ast_channel *ast, char *dest, int timeout) p->chan->cid.cid_pres = p->owner->cid.cid_pres; ast_string_field_set(p->chan, language, p->owner->language); ast_string_field_set(p->chan, accountcode, p->owner->accountcode); + ast_cdr_update(p->chan); p->chan->cdrflags = p->owner->cdrflags; /* copy the channel variables from the incoming channel to the outgoing channel */