From: Daniel Kahn Gillmor Date: Tue, 14 Jul 2009 05:32:10 +0000 (-0400) Subject: fixing typo and thinko in keytrans X-Git-Tag: monkeysphere_0.25~11 X-Git-Url: https://codewiz.org/gitweb?p=monkeysphere.git;a=commitdiff_plain;h=d4d10f1f8ae42f9e9d81aabc5814aeeeb52aaa19 fixing typo and thinko in keytrans --- 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"; } } }