[asterisk-bugs] [JIRA] (ASTERISK-27798) CDR_PROP(party_a) does not work.
Kevin Harwell (JIRA)
noreply at issues.asterisk.org
Thu Apr 12 18:23:50 CDT 2018
[ https://issues.asterisk.org/jira/browse/ASTERISK-27798?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=243008#comment-243008 ]
Kevin Harwell commented on ASTERISK-27798:
------------------------------------------
It looks like you are correct. It appears to be a easy fix. Any interest in submitting a patch to gerrit?
> CDR_PROP(party_a) does not work.
> --------------------------------
>
> Key: ASTERISK-27798
> URL: https://issues.asterisk.org/jira/browse/ASTERISK-27798
> Project: Asterisk
> Issue Type: Bug
> Security Level: None
> Components: CDR/General
> Affects Versions: 13.20.0
> Reporter: Jeff Hoppe
>
> CDR_PROP(party_a) doesn't work. I traced the code to main/cdr.c source file.
> The function that determines which CDR is party A has two cdr snapshots as parameters. The code is written where if the party_a flag was set on the second cdr snapshot (right), it will be ignored.
> Function showing in reference notes below.
> This line (which will always be false):
> } else if (!ast_test_flag(right, AST_CDR_FLAG_PARTY_A) && ast_test_flag(right, AST_CDR_FLAG_PARTY_A)) {
> .
> should be
> .
> } else if (!ast_test_flag(left, AST_CDR_FLAG_PARTY_A) && ast_test_flag(right, AST_CDR_FLAG_PARTY_A)) {
> if I am not mistaken.
--
This message was sent by Atlassian JIRA
(v6.2#6252)
More information about the asterisk-bugs
mailing list