diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-07-14 01:32:10 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-07-14 01:32:10 -0400 |
commit | d4d10f1f8ae42f9e9d81aabc5814aeeeb52aaa19 (patch) | |
tree | 082b6f9536aa0dd81c93a11a0a1d81bbd1405042 /src/share/keytrans | |
parent | fcdbba726ead3e13856c05881ea768bb74a078ff (diff) |
fixing typo and thinko in keytrans
Diffstat (limited to 'src/share/keytrans')
-rwxr-xr-x | src/share/keytrans | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/share/keytrans b/src/share/keytrans index c64b810..ae4fb09 100755 --- a/src/share/keytrans +++ b/src/share/keytrans @@ -797,7 +797,9 @@ sub openpgp2rsa { $fpr = uc($fpr); } - my $data = { 'fpr' => $fpr}; + my $data = { target => { fpr => $fpr, + }, + }; my $subs = { $packet_types->{pubkey} => \&findkey, $packet_types->{pub_subkey} => \&findkey, $packet_types->{seckey} => \&findkey, @@ -1101,7 +1103,7 @@ for (basename($0)) { print $newuid; } else { - die "Unrecognized subcomand. keytrans subcommands are not a stable interface!\n"; + die "Unrecognized subcommand. keytrans subcommands are not a stable interface!\n"; } } } |