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
This commit is contained in:
Michael Jerris 2009-03-24 15:38:33 +00:00
parent 0bafa3b1cd
commit 93aa2e4ac7
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
Tue Mar 24 10:36:48 CDT 2009
Tue Mar 24 10:37:37 CDT 2009

View File

@ -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;