Module: sip-router Branch: hpw/branch_failure_route Commit: 58c9ba973415caf2a39c0c6fefbd66986d475a89 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=58c9ba97...
Author: Hugh Waite hugh.waite@crocodile-rcs.com Committer: Hugh Waite hugh.waite@crocodile-rcs.com Date: Wed Mar 27 11:46:45 2013 +0000
modules/domain: Updated to use the new get_branch()/next_branch() functions
---
modules/domain/domain.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/domain/domain.c b/modules/domain/domain.c index cacca0c..60915bf 100644 --- a/modules/domain/domain.c +++ b/modules/domain/domain.c @@ -142,7 +142,7 @@ int is_uri_host_local(struct sip_msg* _msg, char* _s1, char* _s2) } return hash_table_lookup(&(_msg->parsed_uri.host), &did, &attrs); } else if (is_route_type(FAILURE_ROUTE)) { - branch.s = get_branch(0, &branch.len, &q, 0, 0, 0, 0, 0); + branch.s = get_branch(0, &branch.len, &q, 0, 0, 0, 0, 0, 0); if (branch.s) { if (parse_uri(branch.s, branch.len, &puri) < 0) { LM_ERR("error while parsing branch URI\n");