[sr-dev] git:master: mangler(s): fixed missing var. definitions

Andrei Pelinescu-Onciul andrei at iptel.org
Fri Jul 3 14:52:00 CEST 2009


Module: sip-router
Branch: master
Commit: e2f4753b2591a8564907f09531ce44c0c397cc65
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e2f4753b2591a8564907f09531ce44c0c397cc65

Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date:   Fri Jul  3 14:46:31 2009 +0200

mangler(s): fixed missing var. definitions

ipExpression and portExpression were only declared as extern,
they had no definition in sdp_mangler.c.

Reported-by: Klaus Darilion klaus.mailinglists at pernau at

---

 modules_s/mangler/sdp_mangler.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/modules_s/mangler/sdp_mangler.c b/modules_s/mangler/sdp_mangler.c
index 729e2c5..adfd15f 100644
--- a/modules_s/mangler/sdp_mangler.c
+++ b/modules_s/mangler/sdp_mangler.c
@@ -50,6 +50,10 @@
 #include "../../ut.h"
 #include "../../parser/msg_parser.h"	/* struct sip_msg */
 
+regex_t *portExpression;
+regex_t *ipExpression;
+
+
 
 int
 sdp_mangle_port (struct sip_msg *msg, char *offset, char *unused)




More information about the sr-dev mailing list