]> git.donarmstrong.com Git - bugscan.git/blobdiff - bugcounts
ignore undefined values when we filter
[bugscan.git] / bugcounts
index d7adb4d2ea4099f3e7f6781f8818274429f812eb..6925f2b8a05fcf8d22ec29a2f52d36d224642cb3 100755 (executable)
--- a/bugcounts
+++ b/bugcounts
@@ -1,5 +1,5 @@
 #! /usr/bin/perl
-# vim: ts=4 sw=4 nowrap
+# vim: ts=8 sw=8 nowrap
 
 # Generate some counts for the bugreports
 
@@ -49,7 +49,7 @@ for my $bug (values %scanlib::bugs) {
        $total++;
        $pendingcount++ if ($bug->{'pending'});
        $patchcount++ if ($bug->{'patch'});
-       $ignorecount++ if ($bug->{'sarge-ignore'} || $bug->{'etch-ignore'});
+       $ignorecount++ if ($bug->{'lenny-ignore'} || $bug->{'squeeze-ignore'});
        $worrycount++ if (scanlib::check_worry($bug));
        $stablecount++ if (scanlib::check_worry_stable($bug));
 }