Bug#759342: the patch

2014-12-12 Thread Vincent Lefevre
Control: tags -1 patch

On 2014-08-30 19:24:53 +0400, Alexander Inyukhin wrote:
> Tags: patch

The tag wasn't added. Added it above.

These warnings can be rather annoying (spamming the user).
Why hasn't this been fixed before the freeze???

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#759342: the patch

2014-08-30 Thread Alexander Inyukhin
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($) {