From: Matthew Jordan Date: Mon, 20 May 2013 19:24:16 +0000 (+0000) Subject: Set the AST_CDR_FLAG_ORIGINATED flag on originated channel's CDRs X-Git-Tag: 13.0.0-beta1~1786 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8aec724943dec514117a30bb099e25b0e8b3ffe;p=thirdparty%2Fasterisk.git Set the AST_CDR_FLAG_ORIGINATED flag on originated channel's CDRs This may alleviate some of the CDR woes with originated channels, as CDRs do like to know when a channel was originated. Eventually this will get converted to be a channel flag, so its location is still good to know post the great CDR shakeup of 2013. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@389306 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/pbx.c b/main/pbx.c index e00ba70b18..6359c056c2 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -10084,6 +10084,7 @@ static int pbx_outgoing_attempt(const char *type, struct ast_format_cap *cap, co if (account) { ast_cdr_setaccount(dialed, account); } + ast_set_flag(ast_channel_cdr(dialed), AST_CDR_FLAG_ORIGINATED); if (!ast_strlen_zero(cid_num) && !ast_strlen_zero(cid_name)) { struct ast_party_connected_line connected;