Merge commit 'mlcastle/master'
[monkeysphere.git] / src / share / mh / set_expire
index a6bf1f13ae5e33f42fade4091350f7a62993dbc0..9889e76e62bb28391bd83d3de0c654f9a853550e 100644 (file)
@@ -22,7 +22,8 @@ local extendTo
 extendTo=$(get_gpg_expiration "$1")
 
 if [ "$PROMPT" = "true" ] ; then
-    read -p "Are you sure you want to change the expiration on the host key to '$extendTo'? (Y/n) " OK; OK=${OK:-Y}
+    printf "Are you sure you want to change the expiration on the host key to '%s'? (Y/n) " "$extendTo" >&2
+    read OK; OK=${OK:-Y}
     if [ "${OK/y/Y}" != 'Y' ] ; then
        failure "expiration not set."
     fi