]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
change the override to header symbol from : to ^ (beware)
authorBrian West <brian@freeswitch.org>
Wed, 21 Feb 2007 03:37:17 +0000 (03:37 +0000)
committerBrian West <brian@freeswitch.org>
Wed, 21 Feb 2007 03:37:17 +0000 (03:37 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4340 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/mod_sofia.c

index 1293637b107281498439383d797818683f803948..49d17bff35464d96bd3036a80262adf19818386b 100644 (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);