]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
don't override macro name (MODLANG-68)
authorAnthony Minessale <anthony.minessale@gmail.com>
Tue, 8 Jul 2008 03:25:31 +0000 (03:25 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Tue, 8 Jul 2008 03:25:31 +0000 (03:25 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8915 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/languages/mod_python/freeswitch_python.cpp

index 927d9aaab6332199ba8e99c49e9163be72bc8942..4a3afc5a0e3d6ea1b97a9a235fb05209143aa1ab 100644 (file)
@@ -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();
 }