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
commit2f2cbae33311c2b479f41fff24af98e07146087b (patch)
tree1a75bf0bab8f353e394a7893f23c08a2f04d9959 /bin/updatelist
parent1892a9cb7e2c769a2f36f183b95bada489ee3817 (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