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

Jacek Konieczny asteriskteam at digium.com
Tue Sep 5 07:36:56 CDT 2017


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


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/88/6388/1

diff --git a/funcs/func_cdr.c b/funcs/func_cdr.c
index a56b47a..66d0861 100644
--- a/funcs/func_cdr.c
+++ b/funcs/func_cdr.c
@@ -282,7 +282,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/6388
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: 14
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia4e0b6ba93e03d27886354c279737790e2cd6a83
Gerrit-Change-Number: 6388
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/20170905/2b572a6f/attachment.html>


More information about the asterisk-code-review mailing list