update copyright notice

This commit is contained in:
Tinderbox User 2012-06-25 23:45:45 +00:00
parent e407ffdb0a
commit d3bb7b6b7b
2 changed files with 3 additions and 3 deletions

View file

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

View file

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