From: Mark Andrews Date: Fri, 27 Apr 2012 06:31:13 +0000 (+1000) Subject: only report different text if not in EXCLUDED X-Git-Tag: v9.7.6~24 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=1c642c6c67601a98b15dd10fe00acf465cb743a8;p=thirdparty%2Fbind9.git only report different text if not in EXCLUDED --- diff --git a/util/check-pullups.pl b/util/check-pullups.pl index dffa5fc5926..c8ae8af6ee3 100644 --- a/util/check-pullups.pl +++ b/util/check-pullups.pl @@ -87,7 +87,7 @@ foreach my $c (sort {$a <=> $b} keys %$c1) { print $c1->{$c}->{text}; } if (exists($c2->{$c}) && $category ne "placeholder" && - $c2->{$c}->{text} ne $text) { + $c2->{$c}->{text} ne $text && !exists($c3->{$c})) { if ($msg ne "TEXT\n") { $msg = "TEXT\n"; print $msg;