[Home]

Summary:ASTERISK-09890: the right parentheses is in wrong position of function ast_test_flag
Reporter:Fanzhou Zhao (fanzhou zhao)Labels:
Date Opened:2007-07-17 04:46:11Date Closed:2007-07-17 06:44:09
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Applications/app_dial
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:( 0) app_dial.patch
Description:in the app_dial.c, line 1570, the right parentheses is in wrong position of function ast_test_flag.
hanguptree(outgoing, NULL, ast_test_flag(&opts, OPT_CANCEL_ELSEWHERE ? 1 : 0));
equal to
hanguptree(outgoing, NULL, ast_test_flag(&opts, 1));
Comments:By: Digium Subversion (svnbot) 2007-07-17 06:44:09

Repository: asterisk
Revision: 75351

------------------------------------------------------------------------
r75351 | qwell | 2007-07-17 06:44:07 -0500 (Tue, 17 Jul 2007) | 6 lines

Fix an incorrect parenthesization (TODO: Find a better word) in app_dial

Pointed out by Fanzhou Zhao

Closes issue ASTERISK-9890

------------------------------------------------------------------------