From: Michael Jerris Date: Thu, 7 Sep 2006 05:34:11 +0000 (+0000) Subject: remove unnecessary muting on volume adjust and energy, bad bluetooth headsets find... X-Git-Tag: v1.0-beta1~2215 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7863ad0d705a17b69c23b99c7cfd4db9f756053b;p=thirdparty%2Ffreeswitch.git remove unnecessary muting on volume adjust and energy, bad bluetooth headsets find bugs, thanks Jason Garland for finding this one. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2541 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 68368d6d22..4923bd5f24 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -1557,7 +1557,6 @@ static switch_status_t conf_function(char *buf, switch_core_session_t *session, conference_member_t *member; if ((member = conference_member_get(conference, id))) { - switch_clear_flag_locked(member, MFLAG_CAN_SPEAK); if (argv[3]) { switch_mutex_lock(member->flag_mutex); @@ -1595,7 +1594,6 @@ static switch_status_t conf_function(char *buf, switch_core_session_t *session, conference_member_t *member; if ((member = conference_member_get(conference, id))) { - switch_clear_flag_locked(member, MFLAG_CAN_SPEAK); if (argv[3]) { switch_mutex_lock(member->flag_mutex); @@ -1633,7 +1631,6 @@ static switch_status_t conf_function(char *buf, switch_core_session_t *session, conference_member_t *member; if ((member = conference_member_get(conference, id))) { - switch_clear_flag_locked(member, MFLAG_CAN_SPEAK); if (argv[3]) { switch_mutex_lock(member->flag_mutex);