From: Anthony Minessale Date: Tue, 3 Mar 2015 03:13:03 +0000 (-0600) Subject: FS-7513: fix typo X-Git-Tag: v1.6.2~614^2~317 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b21a45e9eb479bc07ca24286394ed7c8ace5a8c;p=thirdparty%2Ffreeswitch.git FS-7513: fix typo --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index ffd8bd0f85..95394d318c 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -3642,7 +3642,7 @@ static switch_status_t conference_add_member(conference_obj_t *conference, confe switch_assert(member != NULL); if (member->session && switch_test_flag(conference, CFLAG_TRANSCODE_VIDEO)) { - switch_channel_set_flag(channel, CF_VIDEO_DECODED_READ); + switch_channel_set_flag(member->channel, CF_VIDEO_DECODED_READ); switch_core_media_gen_key_frame(member->session); }