Mon Jan 12 08:29:14 CST 2009 Pekka Pessi <first.last@nokia.com>

* sip-dig.c: using su_casenmatch() to match NAPTR service



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11812 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-02-11 16:54:44 +00:00
parent a8ee947d37
commit 7d792fe3ea
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
Wed Feb 11 10:54:13 CST 2009
Wed Feb 11 10:54:37 CST 2009

View File

@ -533,7 +533,7 @@ int dig_naptr(struct dig *dig,
continue;
if (!su_casematch(na->na_flags, "s") && !su_casematch(na->na_flags, "a"))
continue;
if (dig->sips && !su_casematch(na->na_services, "SIPS+", 5))
if (dig->sips && !su_casenmatch(na->na_services, "SIPS+", 5))
continue;
tp = transport_by_service(dig->tports, na->na_services);