]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice / whitespace
authorTinderbox User <tbox@isc.org>
Wed, 2 Nov 2016 23:46:39 +0000 (23:46 +0000)
committerTinderbox User <tbox@isc.org>
Wed, 2 Nov 2016 23:46:39 +0000 (23:46 +0000)
bin/tests/system/xfer/ns1/named.conf
lib/bind9/check.c
lib/dns/include/dns/db.h
lib/dns/rbtdb.c
lib/dns/zone.c
lib/isc/random.c

index b0d46ce1e7409ed62044e0165c8d1ba068167a98..79fa7c9efe1c05e92cdc901c36cbf12fad1d4ca6 100644 (file)
@@ -42,12 +42,12 @@ zone "edns-expire" {
 };
 
 zone "axfr-too-big" {
-        type master;
-        file "axfr-too-big.db";
+       type master;
+       file "axfr-too-big.db";
 };
 
 zone "ixfr-too-big" {
-        type master;
+       type master;
        allow-update { any; };
-        file "ixfr-too-big.db";
+       file "ixfr-too-big.db";
 };
index 10c598a320ebe26763f35ca638a1cb472dee0f5c..4550fdfff4e311c9397193080138b363fff43c94 100644 (file)
@@ -1757,7 +1757,7 @@ check_zoneconf(const cfg_obj_t *zconfig, const cfg_obj_t *voptions,
        { "masters", SLAVEZONE | STUBZONE | REDIRECTZONE },
        { "max-ixfr-log-size", MASTERZONE | SLAVEZONE | STREDIRECTZONE },
        { "max-records", MASTERZONE | SLAVEZONE | STUBZONE | STREDIRECTZONE |
-          STATICSTUBZONE | REDIRECTZONE },
+         STATICSTUBZONE | REDIRECTZONE },
        { "max-refresh-time", SLAVEZONE | STUBZONE | STREDIRECTZONE },
        { "max-retry-time", SLAVEZONE | STUBZONE | STREDIRECTZONE },
        { "max-transfer-idle-in", SLAVEZONE | STUBZONE | STREDIRECTZONE },
index 59b2dc4c9a7b4559848216f83e9c9c2020ccff7a..b2bcb004fc50cfeee976a0e403caf706dfe570f6 100644 (file)
@@ -1505,7 +1505,7 @@ dns_db_getnsec3parameters(dns_db_t *db, dns_dbversion_t *version,
 
 isc_result_t
 dns_db_getsize(dns_db_t *db, dns_dbversion_t *version, isc_uint64_t *records,
-               isc_uint64_t *bytes);
+              isc_uint64_t *bytes);
 /*%<
  * Get the number of records in the given version of the database as well
  * as the number bytes used to store those records.
index 4f78bc4911b8decb48dcade97a3797c651dd9866..5323b23be4f7e6a9215527e4629d64ee8e271a30 100644 (file)
@@ -7984,7 +7984,7 @@ getnsec3parameters(dns_db_t *db, dns_dbversion_t *version, dns_hash_t *hash,
 
 static isc_result_t
 getsize(dns_db_t *db, dns_dbversion_t *version, isc_uint64_t *records,
-        isc_uint64_t *bytes)
+       isc_uint64_t *bytes)
 {
        dns_rbtdb_t *rbtdb;
        isc_result_t result = ISC_R_SUCCESS;
index 2b4e76ddba42c2be55c5661b7851a0b267118dd6..b6b727cc5b264576a4e6d3e3861eef595908e85c 100644 (file)
@@ -10218,14 +10218,14 @@ dns_zone_setmaxretrytime(dns_zone_t *zone, isc_uint32_t val) {
 
 isc_uint32_t
 dns_zone_getmaxrecords(dns_zone_t *zone) {
-        REQUIRE(DNS_ZONE_VALID(zone));
+       REQUIRE(DNS_ZONE_VALID(zone));
 
        return (zone->maxrecords);
 }
 
 void
 dns_zone_setmaxrecords(dns_zone_t *zone, isc_uint32_t val) {
-        REQUIRE(DNS_ZONE_VALID(zone));
+       REQUIRE(DNS_ZONE_VALID(zone));
 
        zone->maxrecords = val;
 }
index 826e50d6dcb2f1b8b7e9cd24e4bcb0b9d6d827ca..c7bfcdf566c4a1c053adb0a7e764d54271d7498e 100644 (file)
@@ -109,12 +109,12 @@ isc_random_seed(isc_uint32_t seed) {
        arc4random_addrandom((u_char *) &seed, sizeof(isc_uint32_t));
 #else
        /*
-        * If arcrandom() is available and no corresponding seeding
-        * function arc4random_addrandom() is available, no seeding is
-        * done on such platforms (e.g., OpenBSD 5.5).  This is because
-        * the OS itself is supposed to seed the RNG and it is assumed
-        * that no explicit seeding is required.
-        */
+       * If arcrandom() is available and no corresponding seeding
+       * function arc4random_addrandom() is available, no seeding is
+       * done on such platforms (e.g., OpenBSD 5.5).  This is because
+       * the OS itself is supposed to seed the RNG and it is assumed
+       * that no explicit seeding is required.
+       */
        UNUSED(seed);
 #endif
 }