[Freeswitch-svn] [commit] r8915 - freeswitch/trunk/src/mod/languages/mod_python

Freeswitch SVN anthm at freeswitch.org
Mon Jul 7 23:25:31 EDT 2008


Author: anthm
Date: Mon Jul  7 23:25:31 2008
New Revision: 8915

Modified:
   freeswitch/trunk/src/mod/languages/mod_python/freeswitch_python.cpp

Log:
don't override macro name (MODLANG-68)

Modified: freeswitch/trunk/src/mod/languages/mod_python/freeswitch_python.cpp
==============================================================================
--- freeswitch/trunk/src/mod/languages/mod_python/freeswitch_python.cpp	(original)
+++ freeswitch/trunk/src/mod/languages/mod_python/freeswitch_python.cpp	Mon Jul  7 23:25:31 2008
@@ -1,21 +1,21 @@
 #include "freeswitch_python.h"
 
 #define sanity_check(x) do { if (!session) { switch_log_printf(SWITCH_CHANNEL_LOG,SWITCH_LOG_ERROR, "session is not initalized\n"); return x;}} while(0)
-#define init_vars() do { caller_profile.source = "mod_python"; swapstate = S_SWAPPED_IN; } while(0)
+#define py_init_vars() do { caller_profile.source = "mod_python"; swapstate = S_SWAPPED_IN; } while(0)
 
 PySession::PySession():CoreSession()
 {
-	init_vars();
+	py_init_vars();
 }
 
 PySession::PySession(char *uuid):CoreSession(uuid)
 {
-	init_vars();
+	py_init_vars();
 }
 
 PySession::PySession(switch_core_session_t *new_session):CoreSession(new_session)
 {
-	init_vars();
+	py_init_vars();
 }
 
 



More information about the Freeswitch-svn mailing list