mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 03:11:56 -05:00
2050. [bug] Parsing of NSAP records was not case insensitive.
[RT #16287]
This commit is contained in:
parent
fd5f5991fa
commit
40409bfe35
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
2050. [bug] Parsing of NSAP records was not case insensitive.
|
||||
[RT #16287]
|
||||
|
||||
2049. [bug] Restore SOA before AXFR when falling back from
|
||||
a attempted IXFR when transfering in a zone.
|
||||
Allow a initial SOA query before attempting
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: rdata.c,v 1.184.18.7 2005/07/22 05:30:00 marka Exp $ */
|
||||
/* $Id: rdata.c,v 1.184.18.8 2006/07/20 03:26:56 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -1272,7 +1272,7 @@ hexvalue(char value) {
|
|||
return (-1);
|
||||
if (isupper(c))
|
||||
c = tolower(c);
|
||||
if ((s = strchr(hexdigits, value)) == NULL)
|
||||
if ((s = strchr(hexdigits, c)) == NULL)
|
||||
return (-1);
|
||||
return (s - hexdigits);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue