Module: sip-router
Branch: pd/outbound
Commit: f63b55b96e9a2900cf73183fdaa41992c3c31dc5
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f63b55b…
Author: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Committer: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Date: Thu Mar 14 23:34:01 2013 +0000
modules/domain: updated use of get_branch() and next_branch() to cope with additional
argument
---
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 b13ff7f..cacca0c 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);
+ branch.s = get_branch(0, &branch.len, &q, 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");