]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 289177 via svnmerge from
authorMatthew Nicholson <mnicholson@digium.com>
Wed, 29 Sep 2010 15:04:11 +0000 (15:04 +0000)
committerMatthew Nicholson <mnicholson@digium.com>
Wed, 29 Sep 2010 15:04:11 +0000 (15:04 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r289177 | mnicholson | 2010-09-29 10:03:27 -0500 (Wed, 29 Sep 2010) | 8 lines

  Set the caller id on CDRs when it is set on the parent channel.

  (closes issue #17569)
  Reported by: tbelder
  Patches:
        17569.diff uploaded by tbelder (license 618)
  Tested by: tbelder
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@289178 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/channel.c

index de3f6d8d70388565dff4b5c8a87f4fe01192457a..51dd1d23eb71b6ef2b5de3b9ef5260b24d83911f 100644 (file)
@@ -4935,6 +4935,9 @@ void ast_set_callerid(struct ast_channel *chan, const char *cid_num, const char
                        ast_free(chan->cid.cid_ani);
                chan->cid.cid_ani = ast_strdup(cid_ani);
        }
+       if (chan->cdr) {
+               ast_cdr_setcid(chan->cdr, chan);
+       }
 
        report_new_callerid(chan);