From 0b35b58e79a37db5191a07136908f0ace55efe4a Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 8 Jul 2008 03:25:31 +0000 Subject: [PATCH] don't override macro name (MODLANG-68) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8915 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/languages/mod_python/freeswitch_python.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mod/languages/mod_python/freeswitch_python.cpp b/src/mod/languages/mod_python/freeswitch_python.cpp index 927d9aaab6..4a3afc5a0e 100644 --- a/src/mod/languages/mod_python/freeswitch_python.cpp +++ b/src/mod/languages/mod_python/freeswitch_python.cpp @@ -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(); }