diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-16 21:39:17 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-16 21:40:52 -0500 |
commit | cc26b64f9d83de2d9e567f9a1c223233fe0bb860 (patch) | |
tree | 7a7489e3d735ee4fc3009af821aa57588fefb391 /src | |
parent | e93a298ec6f9abd80e30a933b0dd84c764d11bff (diff) |
fix reference to HOST_FINGERPRINT in show-key, and fix some references
to "expert" in test.
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere-host | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monkeysphere-host b/src/monkeysphere-host index 2e69d41..bd956e0 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -175,8 +175,8 @@ show_key() { echo -n "ssh fingerprint: " ssh-keygen -l -f /dev/stdin \ - <<<$( gpg_host --export FEE16FA3 2>/dev/null \ - | openpgp2ssh 8445B5203A8443B4B04F637DD4DE66B2FEE16FA3 2>/dev/null) \ + <<<$( gpg_host --export "$HOST_FINGERPRINT" 2>/dev/null \ + | openpgp2ssh "$HOST_FINGERPRINT" 2>/dev/null) \ | awk '{ print $1, $2, $4 }' # FIXME: other relevant key parameters? |