提交 93aa2e4a authored 作者: Michael Jerris's avatar Michael Jerris

Thu Mar 5 13:08:22 CST 2009 Pekka Pessi <first.last@nokia.com>

  * nta.c: nta_leg_tag(leg, NULL) now always returns the tag (old or new)
  Ignore-this: f5a7d67ed90e2c284f6696d6b5b89326



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12739 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 0bafa3b1
Tue Mar 24 10:36:48 CDT 2009
Tue Mar 24 10:37:37 CDT 2009
......@@ -4391,7 +4391,7 @@ char const *nta_leg_tag(nta_leg_t *leg, char const *tag)
/* If there already is a tag,
return NULL if it does not match with new one */
if (leg->leg_local->a_tag) {
if (su_casematch(tag, leg->leg_local->a_tag))
if (tag == NULL || su_casematch(tag, leg->leg_local->a_tag))
return leg->leg_local->a_tag;
else
return NULL;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论