mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 06:55:30 +00:00
2050. [bug] Parsing of NSAP records was not case insensitive.
[RT #16287]
This commit is contained in:
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
|
2049. [bug] Restore SOA before AXFR when falling back from
|
||||||
a attempted IXFR when transfering in a zone.
|
a attempted IXFR when transfering in a zone.
|
||||||
Allow a initial SOA query before attempting
|
Allow a initial SOA query before attempting
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: rdata.c,v 1.191 2005/07/22 05:31:01 marka Exp $ */
|
/* $Id: rdata.c,v 1.192 2006/07/20 03:21:10 marka Exp $ */
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
||||||
@@ -1272,7 +1272,7 @@ hexvalue(char value) {
|
|||||||
return (-1);
|
return (-1);
|
||||||
if (isupper(c))
|
if (isupper(c))
|
||||||
c = tolower(c);
|
c = tolower(c);
|
||||||
if ((s = strchr(hexdigits, value)) == NULL)
|
if ((s = strchr(hexdigits, c)) == NULL)
|
||||||
return (-1);
|
return (-1);
|
||||||
return (s - hexdigits);
|
return (s - hexdigits);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user