[Secure-testing-commits] r5041 - bin
Stefan Fritsch
stef-guest at alioth.debian.org
Fri Dec 1 23:39:30 CET 2006
Author: stef-guest
Date: 2006-12-01 23:39:30 +0100 (Fri, 01 Dec 2006)
New Revision: 5041
Modified:
bin/updatelist
Log:
prevent pre-2003 TODOs from beind added
Modified: bin/updatelist
===================================================================
--- bin/updatelist 2006-12-01 22:25:55 UTC (rev 5040)
+++ bin/updatelist 2006-12-01 22:39:30 UTC (rev 5041)
@@ -83,7 +83,12 @@
if (! $cves{$cve}{reserved} && ! $cves{$cve}{rejected} &&
! $cves{$cve}{notes} &&
! $stopped) {
- push @out, "\tTODO: check\n";
+ if ($cve =~ /^CVE-199|^CVE-200[012]/) {
+ push @out, "\tNOT-FOR-US: Data pre-dating the Security Tracker\n";
+ }
+ else {
+ push @out, "\tTODO: check\n";
+ }
}
delete $cves{$cve};
More information about the Secure-testing-commits
mailing list