Module: kamailio Branch: master Commit: c26cade5da0ea6241276e70f45e54a8c802de052 URL: https://github.com/kamailio/kamailio/commit/c26cade5da0ea6241276e70f45e54a8c...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2016-04-18T14:17:51+02:00
app_python: updated include of app_python_mod.h
---
Modified: modules/app_python/app_python_mod.c Modified: modules/app_python/mod_Core.c Modified: modules/app_python/mod_Logger.c Modified: modules/app_python/mod_Ranks.c Modified: modules/app_python/mod_Router.c Modified: modules/app_python/python_exec.c Modified: modules/app_python/python_support.c
---
Diff: https://github.com/kamailio/kamailio/commit/c26cade5da0ea6241276e70f45e54a8c... Patch: https://github.com/kamailio/kamailio/commit/c26cade5da0ea6241276e70f45e54a8c...
---
diff --git a/modules/app_python/app_python_mod.c b/modules/app_python/app_python_mod.c index 3553a10..1708215 100644 --- a/modules/app_python/app_python_mod.c +++ b/modules/app_python/app_python_mod.c @@ -29,7 +29,7 @@ #include "python_iface.h" #include "python_msgobj.h" #include "python_support.h" -#include "python_mod.h" +#include "app_python_mod.h"
#include "mod_Router.h" #include "mod_Core.h" diff --git a/modules/app_python/mod_Core.c b/modules/app_python/mod_Core.c index c226d54..c0507e8 100644 --- a/modules/app_python/mod_Core.c +++ b/modules/app_python/mod_Core.c @@ -33,7 +33,7 @@
// local includes #include "python_exec.h" -#include "python_mod.h" +#include "app_python_mod.h" #include "python_iface.h" #include "python_msgobj.h" #include "python_support.h" diff --git a/modules/app_python/mod_Logger.c b/modules/app_python/mod_Logger.c index 23cb373..ebed1f5 100644 --- a/modules/app_python/mod_Logger.c +++ b/modules/app_python/mod_Logger.c @@ -33,7 +33,7 @@
// local includes #include "python_exec.h" -#include "python_mod.h" +#include "app_python_mod.h" #include "python_iface.h" #include "python_msgobj.h" #include "python_support.h" diff --git a/modules/app_python/mod_Ranks.c b/modules/app_python/mod_Ranks.c index 6c8f0d9..b255f84 100644 --- a/modules/app_python/mod_Ranks.c +++ b/modules/app_python/mod_Ranks.c @@ -33,7 +33,7 @@
// local includes #include "python_exec.h" -#include "python_mod.h" +#include "app_python_mod.h" #include "python_iface.h" #include "python_msgobj.h" #include "python_support.h" diff --git a/modules/app_python/mod_Router.c b/modules/app_python/mod_Router.c index 3de1964..7e69f96 100644 --- a/modules/app_python/mod_Router.c +++ b/modules/app_python/mod_Router.c @@ -32,7 +32,7 @@
// local includes #include "python_exec.h" -#include "python_mod.h" +#include "app_python_mod.h" #include "python_iface.h" #include "python_msgobj.h" #include "python_support.h" diff --git a/modules/app_python/python_exec.c b/modules/app_python/python_exec.c index 2127b3c..ed4e708 100644 --- a/modules/app_python/python_exec.c +++ b/modules/app_python/python_exec.c @@ -31,7 +31,7 @@ #include "../../parser/parse_uri.h"
#include "python_exec.h" -#include "python_mod.h" +#include "app_python_mod.h" #include "python_msgobj.h" #include "python_support.h"
diff --git a/modules/app_python/python_support.c b/modules/app_python/python_support.c index 7a60214..2cd72ab 100644 --- a/modules/app_python/python_support.c +++ b/modules/app_python/python_support.c @@ -26,7 +26,7 @@ #include "../../dprint.h" #include "../../mem/mem.h"
-#include "python_mod.h" +#include "app_python_mod.h" #include "python_support.h"
void python_handle_exception(const char *fmt, ...)