should be ;
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13305 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
0ecd61aaca
commit
1e0e32f50a
|
@ -839,10 +839,10 @@ char *sofia_overcome_sip_uri_weakness(switch_core_session_t *session, const char
|
|||
|
||||
if (strchr(stripped, ';')) {
|
||||
if (params) {
|
||||
new_uri = switch_core_session_sprintf(session, "%s%s&transport=%s;%s%s",
|
||||
new_uri = switch_core_session_sprintf(session, "%s%s;transport=%s;%s%s",
|
||||
uri_only ? "" : "<", stripped, sofia_glue_transport2str(transport), params, uri_only ? "" : ">");
|
||||
} else {
|
||||
new_uri = switch_core_session_sprintf(session, "%s%s&transport=%s%s",
|
||||
new_uri = switch_core_session_sprintf(session, "%s%s;transport=%s%s",
|
||||
uri_only ? "" : "<", stripped, sofia_glue_transport2str(transport), uri_only ? "" : ">");
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue