diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-01-18 01:38:36 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-01-18 01:38:36 -0500 |
commit | cb23b390761c20358c5db30203589c823c7b5bbf (patch) | |
tree | 32c626ce0bf98aa1baa9e48cc59a001d52e994a7 /src | |
parent | 539d6e02d7aeb66e37b598cfbe78b689fdedb151 (diff) | |
parent | a377e69b60eff2fa9e72bb931acb57833560d594 (diff) |
Merge remote branch 'jrollins/master'
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere-host | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/monkeysphere-host b/src/monkeysphere-host index 903e333..8452e6c 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -138,12 +138,13 @@ Please run 'monkeysphere-host import-key' to import a key." ;; *) if [ -z "$keyID" ] ; then - failure "Keyring contains multiple keys. Please specify one to act on (see 'monkeysphere-host show-key')." + failure "Your host keyring contains multiple keys. +Please specify one to act on (see 'monkeysphere-host show-key')." fi ;; esac printf '%s\n' "${fprs[@]}" | grep "${keyID}$" \ - || failure "Key '$keyID' not found." + || failure "Host key '$keyID' not found." } # return 0 if user ID was found. |