Module: kamailio
Branch: master
Commit: 30aa62a5b66a1b16f9012466385bf235688b332e
URL: 
https://github.com/kamailio/kamailio/commit/30aa62a5b66a1b16f9012466385bf235688b332e

Author: AntonyA <ascanio.al...@gmail.com>
Committer: AntonyA <ascanio.al...@gmail.com>
Date: 2018-03-06T03:30:55Z

app_python: fix jenkins build failure, reversed arguments

---

Modified: src/modules/app_python/python_support.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/30aa62a5b66a1b16f9012466385bf235688b332e.diff
Patch: 
https://github.com/kamailio/kamailio/commit/30aa62a5b66a1b16f9012466385bf235688b332e.patch

---

diff --git a/src/modules/app_python/python_support.c 
b/src/modules/app_python/python_support.c
index 8db77af937..7b1a93017e 100644
--- a/src/modules/app_python/python_support.c
+++ b/src/modules/app_python/python_support.c
@@ -51,7 +51,7 @@ void python_handle_exception(const char *fmt, ...)
        if (fmt == NULL)
                srcbuf = NULL;
        else {
-               va_start(fmt, ap);
+               va_start(ap, fmt);
                srcbuf = make_message(fmt, ap);
                va_end(ap);
        }


_______________________________________________
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev

Reply via email to