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

Jacek Konieczny asteriskteam at digium.com
Wed Sep 6 07:27:32 CDT 2017


Jacek Konieczny has uploaded this change for review. ( https://gerrit.asterisk.org/6428


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/28/6428/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/6428
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: 15
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia4e0b6ba93e03d27886354c279737790e2cd6a83
Gerrit-Change-Number: 6428
Gerrit-PatchSet: 1
Gerrit-Owner: Jacek Konieczny <jkonieczny at eggsoft.pl>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20170906/393a9eed/attachment.html>


More information about the asterisk-code-review mailing list