mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +00:00
add "tuning"
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
# $Id: check-pullups.pl,v 1.7 2002/02/20 03:35:56 marka Exp $
|
# $Id: check-pullups.pl,v 1.8 2002/08/06 02:26:11 marka Exp $
|
||||||
|
|
||||||
# Given two CHANGES files, list [bug] entries present in the
|
# Given two CHANGES files, list [bug] entries present in the
|
||||||
# first one but not in the second one.
|
# first one but not in the second one.
|
||||||
@@ -76,7 +76,8 @@ if (@ARGV == 3) {
|
|||||||
|
|
||||||
foreach my $c (sort {$a <=> $b} keys %$c1) {
|
foreach my $c (sort {$a <=> $b} keys %$c1) {
|
||||||
my $category = $c1->{$c}->{category};
|
my $category = $c1->{$c}->{category};
|
||||||
if (($category eq "bug" || $category eq "port") &&
|
if (($category eq "bug" || $category eq "port" ||
|
||||||
|
$category eq "tuning") &&
|
||||||
!exists($c2->{$c}) && !exists($c3->{$c})) {
|
!exists($c2->{$c}) && !exists($c3->{$c})) {
|
||||||
print $c1->{$c}->{text};
|
print $c1->{$c}->{text};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user