Tags: patch
A patch to fix that issue.
--- a/fetch-crl
+++ b/fetch-crl
@@ -568,7 +568,7 @@
sub getAttribute($$) {
my $self = shift or die "Invalid invocation of CRL::getAttribute\n";
my $key = shift;
- return $self->{$key} or undef;
+ return $self->{$key} || undef;
}
sub getPEMdata($) {

