mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +00:00
Fix an incorrect parenthesization (TODO: Find a better word) in app_dial
Pointed out by Fanzhou Zhao Closes issue #10216 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@75351 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1567,7 +1567,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
ast_parseable_goto(peer, opt_args[OPT_ARG_GOTO]);
|
ast_parseable_goto(peer, opt_args[OPT_ARG_GOTO]);
|
||||||
peer->priority++;
|
peer->priority++;
|
||||||
ast_pbx_start(peer);
|
ast_pbx_start(peer);
|
||||||
hanguptree(outgoing, NULL, ast_test_flag(&opts, OPT_CANCEL_ELSEWHERE ? 1 : 0));
|
hanguptree(outgoing, NULL, ast_test_flag(&opts, OPT_CANCEL_ELSEWHERE) ? 1 : 0);
|
||||||
if (continue_exec)
|
if (continue_exec)
|
||||||
*continue_exec = 1;
|
*continue_exec = 1;
|
||||||
res = 0;
|
res = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user