From 30e793a7efba79260a2ef39db4f5a830742e2dec Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 29 Oct 2014 12:16:27 -0500 Subject: [PATCH] fix missing paren in logic for hard mute enter muted mode --- src/mod/applications/mod_conference/mod_conference.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 4fbce0152a..8c4886066f 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -9278,7 +9278,7 @@ SWITCH_STANDARD_APP(conference_function) if (flags_str) { set_mflags(flags_str,&mflags); - if (!(mflags & MFLAG_CAN_SPEAK) && (mflags & MFLAG_INDICATE_MUTE)) { + if (!((mflags & MFLAG_CAN_SPEAK) && (mflags & MFLAG_INDICATE_MUTE))) { switch_core_media_hard_mute(session, SWITCH_TRUE); } @@ -9579,7 +9579,7 @@ SWITCH_STANDARD_APP(conference_function) set_mflags(flags_str, &mflags); mflags |= MFLAG_RUNNING; - if (!(mflags & MFLAG_CAN_SPEAK) && (mflags & MFLAG_INDICATE_MUTE)) { + if (!((mflags & MFLAG_CAN_SPEAK) && (mflags & MFLAG_INDICATE_MUTE))) { switch_core_media_hard_mute(member.session, SWITCH_TRUE); }