From c72c590716452f5c10583c82d83b13d7b1fd5a39 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 11 Mar 2008 18:36:56 +0000 Subject: [PATCH] double sigh git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7861 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_sofia/sofia_glue.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index 11c00c9d6a..1db2fa9f66 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -915,6 +915,7 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session) char *rpid_domain = "cluecon.com", *p; const char *priv = "off"; const char *screen = "no"; + const char *invite_params = switch_channel_get_variable(tech_pvt->channel, "sip_invite_params"); if (switch_strlen_zero(tech_pvt->dest)) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "URL Error! [%s]\n", tech_pvt->dest); @@ -980,11 +981,11 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session) } } - url_str = sofia_overcome_sip_uri_weakness(session, url, tech_pvt->transport, SWITCH_TRUE, - switch_channel_get_variable(tech_pvt->channel, "sip_invite_params")); + url_str = sofia_overcome_sip_uri_weakness(session, url, tech_pvt->transport, SWITCH_TRUE, invite_params); invite_contact = sofia_overcome_sip_uri_weakness(session, tech_pvt->invite_contact, tech_pvt->transport, SWITCH_FALSE, NULL); from_str = sofia_overcome_sip_uri_weakness(session, use_from_str, 0, SWITCH_FALSE, NULL); - to_str = sofia_overcome_sip_uri_weakness(session, tech_pvt->dest_to, 0, SWITCH_FALSE, NULL); + to_str = sofia_overcome_sip_uri_weakness(session, tech_pvt->dest_to, 0, SWITCH_FALSE, invite_params); + /* Does the "genius" who wanted SIP to be "text-based" so it was "easier to read" even use it now,