[Freeswitch-svn] [commit] r4601 - freeswitch/trunk/src/mod/applications/mod_conference

Freeswitch SVN mikej at freeswitch.org
Thu Mar 15 00:31:18 EDT 2007


Author: mikej
Date: Thu Mar 15 00:31:17 2007
New Revision: 4601

Modified:
   freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c

Log:
fix build.  arguments out of order.

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	Thu Mar 15 00:31:17 2007
@@ -1782,8 +1782,8 @@
 
 	if (switch_core_file_open(&fh, 
 							  rec->path, 
+							  (uint8_t)1,
 							  conference->rate,
-							  1,
 							  SWITCH_FILE_FLAG_WRITE | SWITCH_FILE_DATA_SHORT, 
 							  rec->pool) != SWITCH_STATUS_SUCCESS) {
 		switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Opening File [%s]\n", rec->path);
@@ -1960,8 +1960,8 @@
     /* Open the file */
     if (switch_core_file_open(&fnode->fh, 
                               file, 
+							  (uint8_t)1,
 							  conference->rate,
-							  1,
                               SWITCH_FILE_FLAG_READ | SWITCH_FILE_DATA_SHORT, 
                               pool) != SWITCH_STATUS_SUCCESS) {
         switch_core_destroy_memory_pool(&pool);
@@ -2047,8 +2047,8 @@
         /* Open the file */
         if (switch_core_file_open(&fnode->fh, 
                                   file, 
-								  conference->rate,
-								  1,
+								  (uint8_t)1,
+								  member->conference->rate,
                                   SWITCH_FILE_FLAG_READ | SWITCH_FILE_DATA_SHORT, 
                                   pool) != SWITCH_STATUS_SUCCESS) {
             switch_core_destroy_memory_pool(&pool);



More information about the Freeswitch-svn mailing list