[Secure-testing-commits] r2145 - bin
Joey Hess
joeyh at costa.debian.org
Sat Sep 24 03:58:31 UTC 2005
Author: joeyh
Date: 2005-09-24 03:58:31 +0000 (Sat, 24 Sep 2005)
New Revision: 2145
Modified:
bin/checklist
Log:
deal with notfixed change
Modified: bin/checklist
===================================================================
--- bin/checklist 2005-09-24 03:55:48 UTC (rev 2144)
+++ bin/checklist 2005-09-24 03:58:31 UTC (rev 2145)
@@ -133,7 +133,7 @@
# by now, we also have the version that's affected by the security problem.
# This is stored in $version
- next if $version eq 'not-affected';
+ next if $version eq '<not-affected>';
my @notes=split(/\s*;\s+/, $notes);
@@ -179,8 +179,8 @@
next;
}
- if (grep { $_ eq 'unfixed' || $_ eq 'pending' } @notes) {
- record($package, '('.join("; ", @notes).')', $id, $urgency);
+ if ($version eq '<unfixed>' || grep { $_ eq 'pending' } @notes) {
+ record($package, '('.join("; ", "unfixed", @notes).')', $id, $urgency);
$unfixed++;
# It's not been fixed!
}
More information about the Secure-testing-commits
mailing list