[Freeswitch-svn] [commit] r9844 - freeswitch/trunk/src/mod/languages/mod_managed

Freeswitch SVN michaelgg at freeswitch.org
Sat Oct 4 23:28:52 EDT 2008


Author: michaelgg
Date: Sat Oct  4 23:28:52 2008
New Revision: 9844

Modified:
   freeswitch/trunk/src/mod/languages/mod_managed/mod_managed.cpp

Log:
Fix typo

Modified: freeswitch/trunk/src/mod/languages/mod_managed/mod_managed.cpp
==============================================================================
--- freeswitch/trunk/src/mod/languages/mod_managed/mod_managed.cpp	(original)
+++ freeswitch/trunk/src/mod/languages/mod_managed/mod_managed.cpp	Sat Oct  4 23:28:52 2008
@@ -306,8 +306,11 @@
 	int success;
 	/* connect my internal structure to the blank pointer passed to me */ 
 	*module_interface = switch_loadable_module_create_module_interface(pool, modname);
+#ifdef _MANAGED
 	switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Loading mod_managed (Common Language Infrastructure), Microsoft CLR Version\n");
-	
+#else
+	switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Loading mod_managed (Common Language Infrastructure), Mono Version\n");
+#endif
 	globals.pool = pool;
 	
 	if (loadRuntime() != SWITCH_STATUS_SUCCESS) {			



More information about the Freeswitch-svn mailing list