提交 c076ba5c authored 作者: Brian West's avatar Brian West

make sure the TNT doesn't piss its pants when it gets a name field in quotes…

 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
上级 da72c570
......@@ -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\"<sip:%s@%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, "<sip:%s@%s>;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\"<sip:%s@%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:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论