Module: sip-router Branch: master Commit: 3097c7878d395988e137253d77f7fb30707929b0 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3097c787...
Author: Alex Balashov abalashov@evaristesys.com Committer: Alex Balashov abalashov@evaristesys.com Date: Mon Nov 21 06:21:24 2011 -0500
Fixed equivocation of STR_PARAM / INT_PARAM for reg_timer_interval patch.
---
modules_k/uac/uac.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules_k/uac/uac.c b/modules_k/uac/uac.c index e1d2209..3074c5f 100644 --- a/modules_k/uac/uac.c +++ b/modules_k/uac/uac.c @@ -135,7 +135,7 @@ static param_export_t params[] = { {"auth_password_avp", STR_PARAM, &auth_password_avp }, {"reg_db_url", STR_PARAM, ®_db_url.s }, {"reg_contact_addr", STR_PARAM, ®_contact_addr.s }, - {"reg_timer_interval", STR_PARAM, ®_timer_interval }, + {"reg_timer_interval", INT_PARAM, ®_timer_interval }, {0, 0, 0} };