Module: sip-router Branch: master Commit: c3f2b636716928ca234541a5a0835ccb6ca7b302 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c3f2b636...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: Wed Apr 18 19:49:55 2012 +0200
usrloc(k): use correct domain column index
- issue added by previous commit, reported by Juha Heinanen
---
modules_k/usrloc/udomain.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules_k/usrloc/udomain.c b/modules_k/usrloc/udomain.c index 4dab65a..ca2b256 100644 --- a/modules_k/usrloc/udomain.c +++ b/modules_k/usrloc/udomain.c @@ -454,8 +454,8 @@ int preload_udomain(db1_con_t* _c, udomain_t* _d) }
if (use_domain) { - domain = (char*)VAL_STRING(ROW_VALUES(row) + 16); - if (VAL_NULL(ROW_VALUES(row)+16) || domain==0 || domain[0]==0){ + domain = (char*)VAL_STRING(ROW_VALUES(row) + 17); + if (VAL_NULL(ROW_VALUES(row)+17) || domain==0 || domain[0]==0){ LM_CRIT("empty domain record for user %.*s...skipping\n", user.len, user.s); continue; @@ -718,7 +718,7 @@ urecord_t* db_load_urecord_by_ruid(db1_con_t* _c, udomain_t* _d, str *_ruid)
if (use_domain) { domain.s = (char*)VAL_STRING(ROW_VALUES(row) + 17); - if (VAL_NULL(ROW_VALUES(row)+16) || domain.s==0 || domain.s[0]==0){ + if (VAL_NULL(ROW_VALUES(row)+17) || domain.s==0 || domain.s[0]==0){ LM_CRIT("empty domain record for user %.*s...skipping\n", aor.len, aor.s); goto done;