summaryrefslogtreecommitdiffstats
path: root/bin/updatelist
diff options
context:
space:
mode:
authorStefan Fritsch <sf@sfritsch.de>2006-12-01 22:39:30 +0000
committerStefan Fritsch <sf@sfritsch.de>2006-12-01 22:39:30 +0000
commit11f7d4fcd86898e71e9bd19cbaee52e1bae7d876 (patch)
treeb6b0205b8fc9c0ac73796544b48b2935328c36b1 /bin/updatelist
parent37c6187698ca9949cfbe9c534dac02e1df2fa3a5 (diff)
prevent pre-2003 TODOs from beind added
git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@5041 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin/updatelist')
-rwxr-xr-xbin/updatelist7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/updatelist b/bin/updatelist
index e6891f037d..70b5749d21 100755
--- a/bin/updatelist
+++ b/bin/updatelist
@@ -83,7 +83,12 @@ sub docve {
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};

© 2014-2024 Faster IT GmbH | imprint | privacy policy