summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-07-11 16:06:50 -0400
committerJameson Graef Rollins <jrollins@finestructure.net>2009-07-11 16:06:50 -0400
commit3e5df3def466a61cd32bdcc1fd29da09dff43729 (patch)
tree6974eb880d0d3e8f272e5df9e98595d8273c0283 /src
parent46c1365e655bdd62f21d117630442a03174aff1e (diff)
parent4d9da8f75a38327d4a9fc1506739221f9fea9c2a (diff)
Merge commit 'mlcastle/master'
Diffstat (limited to 'src')
-rwxr-xr-xsrc/monkeysphere3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/monkeysphere b/src/monkeysphere
index 6f43632..c45a36f 100755
--- a/src/monkeysphere
+++ b/src/monkeysphere
@@ -144,7 +144,8 @@ check_gpg_authentication_subkey() {
if [ "$validity" = 'u' ] ; then
echo "A valid authentication key already exists for primary key '$keyID'." 1>&2
if [ "$PROMPT" = "true" ] ; then
- read -p "Are you sure you would like to generate another one? (y/N) " OK; OK=${OK:N}
+ printf "Are you sure you would like to generate another one? (y/N) "
+ read OK; OK=${OK:N}
if [ "${OK/y/Y}" != 'Y' ] ; then
failure "aborting."
fi