diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-14 10:21:31 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-14 10:21:31 -0400 |
commit | 42f7fec024d11c2ff20299f73254eda5b06ed181 (patch) | |
tree | d6527d801fb5b021a55c05abb03113ec55c74781 | |
parent | 733d920b94909b19022276f7288b70afa14713bd (diff) |
fixing an error message in monkeysphere-host
-rwxr-xr-x | src/monkeysphere-host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monkeysphere-host b/src/monkeysphere-host index d615230..f5374bd 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -239,7 +239,7 @@ prompt_userid_exists() { if gpgOut=$(gpg_host_list_keys "=${userID}" 2>/dev/null) ; then fingerprint=$(echo "$gpgOut" | grep '^fpr:' | cut -d: -f10) if [ "$PROMPT" != "false" ] ; then - printf "Service name '%s' is already being used by key '%s'.\nAre you sure you want to use it again? (y/N) " "$fingerprint" "$userID" >&2 + printf "Service name '%s' is already being used by key '%s'.\nAre you sure you want to use it again? (y/N) " "$userID" "$fingerprint" >&2 read OK; OK=${OK:=N} if [ "${OK/y/Y}" != 'Y' ] ; then failure "Service name not added." |