From: Jeff Lenk Date: Sun, 16 Feb 2014 05:02:52 +0000 (-0600) Subject: FS-5377 --resolve X-Git-Tag: v1.5.8~25^2~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=458ec1c49272be0ab9ffa5d045392eb0d6c09199;p=thirdparty%2Ffreeswitch.git FS-5377 --resolve --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index a5f87fddce..54f19f4bc6 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -9389,7 +9389,7 @@ static conference_obj_t *conference_new(char *name, conf_xml_cfg_t cfg, switch_c if (!zstr(auto_gain_level)) { int level = 0; - if (switch_true(auto_gain_level)) { + if (switch_true(auto_gain_level) && !switch_is_number(auto_gain_level)) { level = DEFAULT_AGC_LEVEL; } else { level = atoi(auto_gain_level);