[Freeswitch-svn] [commit] r4059 - freeswitch/trunk/src/mod/applications/mod_conference
Freeswitch SVN
anthm at freeswitch.org
Fri Jan 26 10:58:35 EST 2007
Author: anthm
Date: Fri Jan 26 10:58:35 2007
New Revision: 4059
Modified:
freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c
Log:
add more hint info to conference xml open
Modified: freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c (original)
+++ freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c Fri Jan 26 10:58:35 2007
@@ -2966,7 +2966,7 @@
} 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 @@
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))) {
More information about the Freeswitch-svn
mailing list