From: Joshua Colp Date: Fri, 26 May 2017 16:41:59 +0000 (+0000) Subject: manager: Clear the flag on the other channel. X-Git-Tag: 13.17.0-rc1~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b07b2162359ccc9a3f84324fabce18b6ad63eee3;p=thirdparty%2Fasterisk.git manager: Clear the flag on the other channel. During the channel flag audit an incorrect change was done. The flag should be cleared on the second channel. ASTERISK-26469 Change-Id: I770c5a389550a2fb5a6ade942fccbb2e1d9199c8 --- diff --git a/main/manager.c b/main/manager.c index 6db52b8b4d..2f16f04703 100644 --- a/main/manager.c +++ b/main/manager.c @@ -4822,7 +4822,7 @@ static int action_redirect(struct mansession *s, const struct message *m) ast_channel_clear_flag(chan, AST_FLAG_BRIDGE_DUAL_REDIRECT_WAIT); } if (chan2_wait) { - ast_channel_clear_flag(chan, AST_FLAG_BRIDGE_DUAL_REDIRECT_WAIT); + ast_channel_clear_flag(chan2, AST_FLAG_BRIDGE_DUAL_REDIRECT_WAIT); } chan2 = ast_channel_unref(chan2);