[Asterisk-code-review] func cdr: honour 'u' flag on dummy channel (asterisk[master])

Joshua Colp asteriskteam at digium.com
Thu Sep 7 04:37:20 CDT 2017


Joshua Colp has uploaded this change for review. ( https://gerrit.asterisk.org/6461


Change subject: func_cdr: honour 'u' flag on dummy channel
......................................................................

func_cdr: honour 'u' flag on dummy channel

Fixes ${CDR(...,u)} when used in cdr_custom.conf

ASTERISK-27165 #close

Change-Id: Ia4e0b6ba93e03d27886354c279737790e2cd6a83
---
M funcs/func_cdr.c
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/61/6461/1

diff --git a/funcs/func_cdr.c b/funcs/func_cdr.c
index 219e004..5734312 100644
--- a/funcs/func_cdr.c
+++ b/funcs/func_cdr.c
@@ -280,7 +280,7 @@
 
 	if (ast_strlen_zero(ast_channel_name(payload->chan))) {
 		/* Format request on a dummy channel */
-		ast_cdr_format_var(ast_channel_cdr(payload->chan), args.variable, &value, tempbuf, sizeof(tempbuf), 0);
+		ast_cdr_format_var(ast_channel_cdr(payload->chan), args.variable, &value, tempbuf, sizeof(tempbuf), ast_test_flag(&flags, OPT_UNPARSED));
 		if (ast_strlen_zero(value)) {
 			return;
 		}

-- 
To view, visit https://gerrit.asterisk.org/6461
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia4e0b6ba93e03d27886354c279737790e2cd6a83
Gerrit-Change-Number: 6461
Gerrit-PatchSet: 1
Gerrit-Owner: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Jacek Konieczny <jkonieczny at eggsoft.pl>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20170907/094f97fe/attachment.html>


More information about the asterisk-code-review mailing list