From d1aac8d1d07952c9ce6cfe94571e74a4980ff962 Mon Sep 17 00:00:00 2001 From: Art Manion Date: Thu, 23 Jan 2025 18:31:16 -0500 Subject: [PATCH] rel instead of ref #4 Signed-off-by: Art Manion --- lib/CSAF/ROLIE/Feed.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/CSAF/ROLIE/Feed.pm b/lib/CSAF/ROLIE/Feed.pm index 4cde1d6..ae2ab3d 100644 --- a/lib/CSAF/ROLIE/Feed.pm +++ b/lib/CSAF/ROLIE/Feed.pm @@ -109,15 +109,15 @@ sub add_entry { my $integrity = $options->{integrity}; - push @{$link}, {href => "$csaf_url.sha256", ref => 'hash'} + push @{$link}, {href => "$csaf_url.sha256", rel => 'hash'} if (defined $integrity->{sha256} && $integrity->{sha256}); - push @{$link}, {href => "$csaf_url.sha512", ref => 'hash'} + push @{$link}, {href => "$csaf_url.sha512", rel => 'hash'} if (defined $integrity->{sha512} && $integrity->{sha512}); } - push @{$link}, {href => "$csaf_url.asc", ref => 'signature'} + push @{$link}, {href => "$csaf_url.asc", rel => 'signature'} if (defined $options->{signature} && $options->{signature}); my $is_updated = 0;