From: Anthony Minessale Date: Fri, 26 Jan 2007 15:58:35 +0000 (+0000) Subject: add more hint info to conference xml open X-Git-Tag: v1.0-beta1~1292 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c48449854d9a03ea8511baa5040156342183ce38;p=thirdparty%2Ffreeswitch.git add more hint info to conference xml open git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4059 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 b6ef30fa6d..bbf5b23d52 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2966,7 +2966,7 @@ static switch_status_t conf_api_sub_transfer(conference_obj_t *conference, switc } else { profile_name = "default"; } - params = switch_mprintf("conf_name=%s&profile_name=%s"); + params = switch_mprintf("conf_name=%s&profile_name=%s", conf_name, profile_name); /* Open the config from the xml registry */ if (!(cxml = switch_xml_open_cfg(global_cf_name, &cfg, params))) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", global_cf_name); @@ -3525,7 +3525,7 @@ static void conference_function(switch_core_session_t *session, char *data) profile_name = "default"; } - params = switch_mprintf("conf_name=%s&profile_name=%s"); + params = switch_mprintf("conf_name=%s&profile_name=%s", conf_name, profile_name); /* Open the config from the xml registry */ if (!(cxml = switch_xml_open_cfg(global_cf_name, &cfg, params))) {