From: David Bremner Date: Sat, 19 Mar 2011 19:18:23 +0000 (-0300) Subject: fix bug that added subvalid keys to the wrong list X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=11daefc4f648ceab1f84522fc925e6c70c62d8a7;p=monkeysphere-validation-agent.git fix bug that added subvalid keys to the wrong list --- diff --git a/Crypt/Monkeysphere/Validator.pm b/Crypt/Monkeysphere/Validator.pm index 6f5b116..b470349 100644 --- a/Crypt/Monkeysphere/Validator.pm +++ b/Crypt/Monkeysphere/Validator.pm @@ -90,7 +90,7 @@ sub query{ last unless($self->{findall}); } else { $self->log('verbose', "...but is not fully valid (%s).\n",$validity); - push(@{$self->{subvalid_keys}}, + push(@{$ret->{subvalid_keys}}, {fingerprint => $subkey->fingerprint, val => $validity }) if $lastloop; } }