From: Anthony Minessale Date: Wed, 29 Oct 2014 17:16:27 +0000 (-0500) Subject: fix missing paren in logic for hard mute enter muted mode X-Git-Tag: v1.4.13~1^2~7^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30e793a7efba79260a2ef39db4f5a830742e2dec;p=thirdparty%2Ffreeswitch.git fix missing paren in logic for hard mute enter muted mode --- 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); }