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:
3
CHANGES
3
CHANGES
@@ -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]
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user