From: Mark Andrews Date: Tue, 26 Feb 2013 04:47:26 +0000 (+1100) Subject: 3498. [bug] zone statistics for zones which matched a potential X-Git-Tag: v9.10.0a1~490 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=bdc7cf66ff626163801cc59b2fd25523da07d238;p=thirdparty%2Fbind9.git 3498. [bug] zone statistics for zones which matched a potential empty zone could have their zone-statistics setting overridden. reviewed via jabber. --- diff --git a/CHANGES b/CHANGES index f459f0ae2bd..7793c318514 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +3498. [bug] zone statistics for zones which matched a potential + empty zone could have their zone-statistics setting + overridden. + 3497. [func] When deleting a slave/stub zone using 'rndc delzone' report the files that were being used so they can be cleaned up if desired. [RT #27899] diff --git a/bin/named/server.c b/bin/named/server.c index 2558617d4a0..7b6e4fb21a7 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -3346,7 +3346,6 @@ configure_view(dns_view_t *view, cfg_obj_t *config, cfg_obj_t *vconfig, */ (void)dns_view_findzone(view, name, &zone); if (zone != NULL) { - CHECK(setquerystats(zone, mctx, zonestats_on)); dns_zone_detach(&zone); continue; }