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
commit72157c02cbc2f49a4d00654a2585c9eb2f74e5f8 (patch)
tree58216af33e0d1b5d0f15a6dc177fed253c524ce2 /bin/updatelist
parent7840e297a0d364bc39b3203789d62bdc28239557 (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