mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-12 19:39:59 -04:00
update copyright notice
This commit is contained in:
parent
e407ffdb0a
commit
d3bb7b6b7b
2 changed files with 3 additions and 3 deletions
|
|
@ -54,7 +54,7 @@ dns_nsec_setbit(unsigned char *array, unsigned int type, unsigned int bit) {
|
|||
array[type / 8] &= (~mask & 0xFF);
|
||||
}
|
||||
|
||||
isc_boolean_t
|
||||
isc_boolean_t
|
||||
dns_nsec_isset(const unsigned char *array, unsigned int type) {
|
||||
unsigned int byte, shift, mask;
|
||||
|
||||
|
|
@ -234,7 +234,7 @@ dns_nsec_typepresent(dns_rdata_t *nsec, dns_rdatatype_t type) {
|
|||
continue;
|
||||
if (type < (window * 256) + len * 8)
|
||||
present = ISC_TF(dns_nsec_isset(&nsecstruct.typebits[i],
|
||||
type % 256));
|
||||
type % 256));
|
||||
break;
|
||||
}
|
||||
dns_rdata_freestruct(&nsecstruct);
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ dns_nsec3_typepresent(dns_rdata_t *rdata, dns_rdatatype_t type) {
|
|||
continue;
|
||||
if (type < (window * 256) + len * 8)
|
||||
present = ISC_TF(dns_nsec_isset(&nsec3.typebits[i],
|
||||
type % 256));
|
||||
type % 256));
|
||||
break;
|
||||
}
|
||||
dns_rdata_freestruct(&nsec3);
|
||||
|
|
|
|||
Loading…
Reference in a new issue