]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
only report different text if not in EXCLUDED
authorMark Andrews <marka@isc.org>
Fri, 27 Apr 2012 06:31:40 +0000 (16:31 +1000)
committerMark Andrews <marka@isc.org>
Fri, 27 Apr 2012 06:31:40 +0000 (16:31 +1000)
util/check-pullups.pl

index 5559d15b023a14646c41b871d8d99686f8618657..c8ae8af6ee367a1a80a5ec34065d8482f7f5beb3 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 #
-# Copyright (C) 2004, 2007, 2011, 2012  Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012  Internet Systems Consortium, Inc. ("ISC")
 # Copyright (C) 2001-2003  Internet Software Consortium.
 #
 # Permission to use, copy, modify, and/or distribute this software for any
@@ -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;