From: Mike Jerris Date: Tue, 11 Apr 2017 18:52:03 +0000 (-0500) Subject: FS-10220: [mod_conference] fix conference channels variable to force number of channels X-Git-Tag: v1.8.0~615 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b44377449839bdba35592f9b35be67d023b3d996;p=thirdparty%2Ffreeswitch.git FS-10220: [mod_conference] fix conference channels variable to force number of channels --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 20ef6860c1..55e517ffd3 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2680,7 +2680,7 @@ conference_obj_t *conference_new(char *name, conference_xml_cfg_t cfg, switch_co if ((force_channels = switch_channel_get_variable(channel, "conference_force_channels"))) { if (!strcasecmp(force_channels, "auto")) { - force_rate_i = channels = read_impl.number_of_channels; + force_channels_i = channels = read_impl.number_of_channels; } else { tmp = atoi(force_channels);