From: Brian West Date: Wed, 11 Nov 2009 03:53:50 +0000 (+0000) Subject: make sure the TNT doesn't piss its pants when it gets a name field in quotes before... X-Git-Tag: v1.0.6~1445 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c076ba5c27cd48cda99b52e764140f279907df03;p=thirdparty%2Ffreeswitch.git make sure the TNT doesn't piss its pants when it gets a name field in quotes before the rpid... sigh how stupid is that? git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15423 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index daab87f8ba..7e64e91b53 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -1669,9 +1669,14 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session) screen = "yes"; } - tech_pvt->rpid = switch_core_session_sprintf(tech_pvt->session, "\"%s\";party=calling;screen=%s;privacy=%s", - tech_pvt->caller_profile->caller_id_name, - tech_pvt->caller_profile->caller_id_number, rpid_domain, screen, priv); + if (!strcasecmp(tech_pvt->caller_profile->caller_id_name, "_undef_")) { + tech_pvt->rpid = switch_core_session_sprintf(tech_pvt->session, ";party=calling;screen=%s;privacy=%s", + tech_pvt->caller_profile->caller_id_number, rpid_domain, screen, priv); + } else { + tech_pvt->rpid = switch_core_session_sprintf(tech_pvt->session, "\"%s\";party=calling;screen=%s;privacy=%s", + tech_pvt->caller_profile->caller_id_name, + tech_pvt->caller_profile->caller_id_number, rpid_domain, screen, priv); + } } break; default: