[Freeswitch-svn] [commit] r9939 - freeswitch/trunk/src

Freeswitch SVN mikej at freeswitch.org
Fri Oct 10 14:42:29 EDT 2008


Author: mikej
Date: Fri Oct 10 14:42:29 2008
New Revision: 9939

Modified:
   freeswitch/trunk/src/switch_loadable_module.c

Log:
misplaced ( )

Modified: freeswitch/trunk/src/switch_loadable_module.c
==============================================================================
--- freeswitch/trunk/src/switch_loadable_module.c	(original)
+++ freeswitch/trunk/src/switch_loadable_module.c	Fri Oct 10 14:42:29 2008
@@ -833,7 +833,7 @@
 		switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Module %s Already Loaded!\n", file);
 		*err = "Module already loaded";
 		status = SWITCH_STATUS_FALSE;
-	} else if ((status = switch_loadable_module_load_file(path, file, &new_module) == SWITCH_STATUS_SUCCESS)) {
+	} else if ((status = switch_loadable_module_load_file(path, file, &new_module)) == SWITCH_STATUS_SUCCESS) {
 		if ((status = switch_loadable_module_process(file, new_module)) == SWITCH_STATUS_SUCCESS && runtime) {
 			if (new_module->switch_module_runtime) {
 				switch_core_launch_thread(switch_loadable_module_exec, new_module, new_module->pool);



More information about the Freeswitch-svn mailing list