aboutsummaryrefslogtreecommitdiffstats
path: root/english/template/debian/securityreferences.wml
diff options
context:
space:
mode:
authorMartin Schulze <joey>2004-07-28 09:20:56 +0000
committerMartin Schulze <joey>2004-07-28 09:20:56 +0000
commitf40ebe1dd9e959675917783bee319c65e65390db (patch)
tree1114b9aaabb33e681de95f4310d0cddb418ef943 /english/template/debian/securityreferences.wml
parent526bfedb26ac43da9f78d55b841f1dd497ffc41f (diff)
Added support for Debian bug numbers to non-vulnerability lists
CVS version numbers english/template/debian/securityreferences.wml: 1.8 -> 1.9
Diffstat (limited to 'english/template/debian/securityreferences.wml')
-rw-r--r--english/template/debian/securityreferences.wml11
1 files changed, 8 insertions, 3 deletions
diff --git a/english/template/debian/securityreferences.wml b/english/template/debian/securityreferences.wml
index 72915a4ce9b..e99dcba4b8b 100644
--- a/english/template/debian/securityreferences.wml
+++ b/english/template/debian/securityreferences.wml
@@ -103,6 +103,7 @@ sub secrefs
my $bid = bid_secref($refstr);
my $cve = cve_secref($refstr);
my $cert = cert_secref($refstr);
+ my $bugs = bug_secref($refstr);
$result .= $bid if (length ($bid));
@@ -114,6 +115,10 @@ sub secrefs
$result .= ", " if $result ne "";
$result .= $cert;
}
+ if (length ($bugs)) {
+ $result .= ", " if $result ne "";
+ $result .= $bugs;
+ }
return $result;
}
@@ -125,7 +130,7 @@ sub secrefs
next if (/^(#|\s)\s*$/);
if (/^((CVE-|CAN-|VU#|CA-|BID)\S+)\s*/) {
$id = $1;
- } elsif (/^\s+((CVE-|CAN-|VU#|CA-|BID).*\S)\s*$/) {
+ } elsif (/^\s+((CVE-|CAN-|VU#|CA-|BID|Bug#).*\S)\s*$/) {
$ref{$id} .= " " . $1;
} elsif (/^\s+(.*)$/) {
$text{$id} .= $1 . "\n";
@@ -140,7 +145,7 @@ sub secrefs
if (/^((CVE-|CAN-|VU#|CA-|BID)\S+)\s*/) {
$id = $1;
$text{$id} = '';
- } elsif (/^\s+((CVE-|CAN-|VU#|CA-|BID).*\S)\s*$/) {
+ } elsif (/^\s+((CVE-|CAN-|VU#|CA-|BID|Bug#).*\S)\s*$/) {
# ignore
} elsif (/^\s+(.*)$/) {
$text{$id} .= $1 . "\n";
@@ -151,7 +156,7 @@ sub secrefs
my $url;
my @urls;
- my ($bid, $cve, $cert);
+ my ($bid, $cve, $cert, $bugs);
<protect pass=2>
foreach $id (sort keys %text) {
$url = secrefs($id);

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