X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=bugcounts;h=de473a18011984c2452f9610256640f4c017a3ea;hp=3051b19a9074df34c68b5c1ceed5f52d50a3ffa2;hb=c0db4b9d56c1fbb988dffa9fff9f86d181d8b270;hpb=29552d46bcf1d191395b29cfbb7e5f4093774bc7 diff --git a/bugcounts b/bugcounts index 3051b19..de473a1 100755 --- a/bugcounts +++ b/bugcounts @@ -43,6 +43,7 @@ my $patchcount=0; # Number of bugs that have a fix proposed my $pendingcount=0; # Number of bugs that will have a fix uploaded RSN my $ignorecount=0; # Number of bugs being ignored my $worrycount=0; # Number of bugs we're actually worried about +my $stablecount=0; # Number of bugs affecting stable for my $p (keys %scanlib::packagelist) { next if (defined $bugcfg::exclude{$p}); @@ -53,7 +54,8 @@ for my $p (keys %scanlib::packagelist) { $patchcount++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*\+/); $ignorecount++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*I/); $worrycount++ if (scanlib::check_worry($scanlib::bugs{$nr})); + $stablecount++ if (scanlib::check_worry_stable($scanlib::bugs{$nr})); } } -printf("%d %d %d 0 %d 0 %d\n", $total, $pendingcount, $patchcount, $ignorecount, $worrycount); +printf("%d %d %d 0 %d 0 %d %d\n", $total, $pendingcount, $patchcount, $ignorecount, $worrycount, $stablecount);