From: Mark Andrews Date: Thu, 23 Nov 2017 05:09:27 +0000 (+1100) Subject: style X-Git-Tag: v9.12.0rc1~64 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=78e1d7cdde8ba174e8b0598cdca5b1d914ed9e01;p=thirdparty%2Fbind9.git style --- diff --git a/bin/named/server.c b/bin/named/server.c index 0972a83a64c..14f6bcfebef 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -6016,7 +6016,7 @@ configure_zone(const cfg_obj_t *config, const cfg_obj_t *zconfig, * Add the zone to its view in the new view list. */ if (!modify) - CHECK(dns_view_addzone(view, zone)); + CHECK(dns_view_addzone(view, zone)); if (zone_is_catz) { /* diff --git a/lib/dns/rbtdb.c b/lib/dns/rbtdb.c index 42b8ea8049c..a8e96d42c26 100644 --- a/lib/dns/rbtdb.c +++ b/lib/dns/rbtdb.c @@ -8279,7 +8279,7 @@ setservestalettl(dns_db_t *db, dns_ttl_t ttl) { /* currently no bounds checking. 0 means disable. */ rbtdb->serve_stale_ttl = ttl; - return ISC_R_SUCCESS; + return (ISC_R_SUCCESS); } static isc_result_t @@ -8290,7 +8290,7 @@ getservestalettl(dns_db_t *db, dns_ttl_t *ttl) { REQUIRE(IS_CACHE(rbtdb)); *ttl = rbtdb->serve_stale_ttl; - return ISC_R_SUCCESS; + return (ISC_R_SUCCESS); }