From acfe369ca4be31e04ac8a7e65e2f90931d092326 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Sat, 23 Dec 2006 00:30:42 +0000 Subject: [PATCH] fix small bugs git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3811 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_conference/mod_conference.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index e200179be3..3fe97535d9 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -1802,7 +1802,7 @@ static uint32_t conference_member_stop_file(conference_member_t *member, file_st /* Play a file in the conference room */ static switch_status_t conference_play_file(conference_obj_t *conference, char *file, uint32_t leadin, switch_channel_t *channel) { - switch_status_t status = SWITCH_STATUS_FALSE; + switch_status_t status = SWITCH_STATUS_SUCCESS; conference_file_node_t *fnode, *nptr; switch_memory_pool_t *pool; uint32_t count; @@ -2982,8 +2982,8 @@ static switch_status_t conf_api_sub_norecord(conference_obj_t *conference, switc static api_command_t conf_api_sub_commands[] = { {"list", &conf_api_sub_list, CONF_API_SUB_ARGS_SPLIT, " list [delim ]"}, {"energy", &conf_api_sub_energy, CONF_API_SUB_MEMBER_TARGET, " energy []"}, - {"volume in", &conf_api_sub_volume_in, CONF_API_SUB_MEMBER_TARGET, " volume_in []"}, - {"volume out", &conf_api_sub_volume_out, CONF_API_SUB_MEMBER_TARGET, " volume_out []"}, + {"volume_in", &conf_api_sub_volume_in, CONF_API_SUB_MEMBER_TARGET, " volume_in []"}, + {"volume_out", &conf_api_sub_volume_out, CONF_API_SUB_MEMBER_TARGET, " volume_out []"}, {"play", &conf_api_sub_play, CONF_API_SUB_ARGS_SPLIT, " play []"}, {"say", &conf_api_sub_say, CONF_API_SUB_ARGS_AS_ONE, " say "}, {"saymember", &conf_api_sub_saymember, CONF_API_SUB_ARGS_AS_ONE, " saymember "},