Merge pull request #735 in FS/freeswitch from ~DCOLOMBO/freeswitch:bugfix/FS-8911-fix-typo-in-conference_member to master

* commit '3e9e239864c61779acae58ad54639d63b8249f29':
  FS-8911: fix typo in conference_member
This commit is contained in:
Brian West 2016-03-08 09:51:48 -06:00
commit 11136cbd76
1 changed files with 1 additions and 1 deletions

View File

@ -779,7 +779,7 @@ switch_status_t conference_member_add(conference_obj_t *conference, conference_m
}
if ((var = switch_channel_get_variable(member->channel, "rtp_video_max_bandwidth_out"))) {
member->max_bw_out = switch_parse_bandwidth_string(var);;
member->max_bw_out = switch_parse_bandwidth_string(var);
if (member->max_bw_out < conference->video_codec_settings.video.bandwidth) {
conference_utils_member_set_flag_locked(member, MFLAG_NO_MINIMIZE_ENCODING);