Subject: | error in Manager.pm to promote inactive keys |
In v0.06 the errormessage 'Can't locate object method "status" via
package "Crypt::Keyczar::Manager"' is shown when the key is set inactive.
In the subroutine "promote" of Manager.pm is a typo making it impossible
to promote an inactive key. The fix is easy by fixing the call to the
right routine.
line 25 of Manager.pm
$self->status('ACTIVE');
has to be changed to:
$version->status('ACTIVE');
With regards.