From d8aec724943dec514117a30bb099e25b0e8b3ffe Mon Sep 17 00:00:00 2001
From: Matthew Jordan <mjordan@digium.com>
Date: Mon, 20 May 2013 19:24:16 +0000
Subject: [PATCH] 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
---
 main/pbx.c | 1 +
 1 file changed, 1 insertion(+)

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;
-- 
GitLab