change the override to header symbol from : to ^ (beware)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4340 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2007-02-21 03:37:17 +00:00
parent 915944b7ed
commit ddd613eefd

View File

@ -2256,7 +2256,7 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session
goto done;
}
if ((dest_to = strchr(dest, ':'))) {
if ((dest_to = strchr(dest, '^'))) {
*dest_to++ = '\0';
tech_pvt->dest_to = switch_core_session_alloc(nsession, strlen(dest_to) + 5);
snprintf(tech_pvt->dest_to, strlen(dest_to) + 5, "sip:%s", dest_to);