From: Brian West Date: Wed, 21 Feb 2007 03:37:17 +0000 (+0000) Subject: change the override to header symbol from : to ^ (beware) X-Git-Tag: v1.0-beta1~1039 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddd613eefd5a457d7089901612b6a5047d7d6387;p=thirdparty%2Ffreeswitch.git 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 --- diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index 1293637b10..49d17bff35 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -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);