Module: sip-router
Branch: kamailio_3.0
Commit: f47abc04445c660e790a6c44f451a54601a4dbbf
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f47abc0…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Fri Dec 11 11:27:57 2009 +0100
core: fix the fixup_spve_uint() and fixup_spve_str()
- error introduced with the new design in SR of fixup functions set
---
mod_fix.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/mod_fix.c b/mod_fix.c
index 53b12ea..6bb75d2 100644
--- a/mod_fix.c
+++ b/mod_fix.c
@@ -233,6 +233,6 @@ FIXUP_F2FP_T(igp_pvar_pvar, 1, 3, 1, FPARAM_INT|FPARAM_PVS,
FPARAM_PVS)
FIXUP_F_SPVE_T(spve_spve, 1, 2, 2, 0)
-FIXUP_F_SPVE_T(spve_uint, 1, 2, 2, FPARAM_INT)
-FIXUP_F_SPVE_T(spve_str, 1, 2, 2, FPARAM_STR)
+FIXUP_F_SPVE_T(spve_uint, 1, 2, 1, FPARAM_INT)
+FIXUP_F_SPVE_T(spve_str, 1, 2, 1, FPARAM_STR)
FIXUP_F_SPVE_T(spve_null, 1, 1, 1, 0)