[Freeswitch-svn] [commit] r5340 - freeswitch/trunk/src
Freeswitch SVN
mikej at freeswitch.org
Wed Jun 13 10:48:13 EDT 2007
Author: mikej
Date: Wed Jun 13 10:48:13 2007
New Revision: 5340
Modified:
freeswitch/trunk/src/switch_loadable_module.c
Log:
cleanup error message.
Modified: freeswitch/trunk/src/switch_loadable_module.c
==============================================================================
--- freeswitch/trunk/src/switch_loadable_module.c (original)
+++ freeswitch/trunk/src/switch_loadable_module.c Wed Jun 13 10:48:13 2007
@@ -780,7 +780,7 @@
switch_mutex_lock(loadable_modules.mutex);
if (switch_core_hash_find(loadable_modules.module_hash, file)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Module %s Already Loaded!\n", file);
- *err = "Module already loadedn\n";
+ *err = "Module already loaded";
status = SWITCH_STATUS_FALSE;
} 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) {
More information about the Freeswitch-svn
mailing list