2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

3399. [port] netbsd: rename 'bool' parameter to avoid namespace

clash.  [RT #31515]
This commit is contained in:
Mark Andrews
2012-10-22 11:42:23 +11:00
parent 94f86d37b2
commit 965371b8cf
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
3399. [port] netbsd: rename 'bool' parameter to avoid namespace
clash. [RT #31515]
3398. [bug] SOA parameters were not being updated with inline
signed zones if the zone was modified while the
server was offline. [RT #29272]

View File

@@ -15925,9 +15925,9 @@ dns_zone_setrefreshkeyinterval(dns_zone_t *zone, isc_uint32_t interval) {
}
void
dns_zone_setrequestixfr(dns_zone_t *zone, isc_boolean_t bool) {
dns_zone_setrequestixfr(dns_zone_t *zone, isc_boolean_t flag) {
REQUIRE(DNS_ZONE_VALID(zone));
zone->requestixfr = bool;
zone->requestixfr = flag;
}
isc_boolean_t