]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
3399. [port] netbsd: rename 'bool' parameter to avoid namespace
authorMark Andrews <marka@isc.org>
Mon, 22 Oct 2012 00:42:23 +0000 (11:42 +1100)
committerMark Andrews <marka@isc.org>
Mon, 22 Oct 2012 00:42:23 +0000 (11:42 +1100)
                        clash.  [RT #31515]

CHANGES
lib/dns/zone.c

diff --git a/CHANGES b/CHANGES
index 57cc25ae1da93de829da3ebdc9ddd1b39939161c..8637ad5b62afd0afec6cc5fe9894d9cb069d5833 100644 (file)
--- a/CHANGES
+++ b/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]
index bd3f5d1303b70fea1cde3c6ff8c84111dbb20948..7391b15ce430d22fd1d57ad3b13250f4e16cff5c 100644 (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