[asterisk-bugs] [JIRA] (ASTERISK-27798) CDR_PROP(party_a) does not work.

Asterisk Team (JIRA) noreply at issues.asterisk.org
Thu Apr 12 12:03:50 CDT 2018


    [ https://issues.asterisk.org/jira/browse/ASTERISK-27798?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=242998#comment-242998 ] 

Asterisk Team commented on ASTERISK-27798:
------------------------------------------

Thanks for creating a report! The issue has entered the triage process. That means the issue will wait in this status until a Bug Marshal has an opportunity to review the issue. Once the issue has been reviewed you will receive comments regarding the next steps towards resolution.

A good first step is for you to review the [Asterisk Issue Guidelines|https://wiki.asterisk.org/wiki/display/AST/Asterisk+Issue+Guidelines] if you haven't already. The guidelines detail what is expected from an Asterisk issue report.

Then, if you are submitting a patch, please review the [Patch Contribution Process|https://wiki.asterisk.org/wiki/display/AST/Patch+Contribution+Process].

> 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