summaryrefslogtreecommitdiff
path: root/distrib/miniroot
diff options
context:
space:
mode:
authorRobert Peichaer <rpe@cvs.openbsd.org>2018-07-09 08:25:09 +0000
committerRobert Peichaer <rpe@cvs.openbsd.org>2018-07-09 08:25:09 +0000
commit3ab43a6ad86b9da0b303276086a030b2f67abff0 (patch)
tree87c06eeaa2bcd5c59a0dc2505b28d336ae127317 /distrib/miniroot
parentec98a6b65c691ec27b193001192857ea1ffa3967 (diff)
Comments
Diffstat (limited to 'distrib/miniroot')
-rw-r--r--distrib/miniroot/install.sub16
1 files changed, 8 insertions, 8 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub
index 39602a1d7b9..1f8e6c5b16f 100644
--- a/distrib/miniroot/install.sub
+++ b/distrib/miniroot/install.sub
@@ -1,5 +1,5 @@
#!/bin/ksh
-# $OpenBSD: install.sub,v 1.1089 2018/07/08 21:25:59 rpe Exp $
+# $OpenBSD: install.sub,v 1.1090 2018/07/09 08:25:08 rpe Exp $
#
# Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback
# Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org>
@@ -822,13 +822,12 @@ ask_until() {
done
}
-# Ask for a password, saving the input in $resp.
+# Capture a user password and save it in $resp, optionally showing prompt $1.
#
-# 1) Display $1 as the prompt.
-# 2) *Don't* allow the '!' options that ask does.
-# 3) *Don't* echo input.
-# 4) *Don't* interpret "\" as escape character.
-# 5) Preserve whitespace in input
+# 1) *Don't* allow the '!' options that ask does.
+# 2) *Don't* echo input.
+# 3) *Don't* interpret "\" as escape character.
+# 4) Preserve whitespace in input
#
ask_pass() {
stty -echo
@@ -837,7 +836,8 @@ ask_pass() {
echo
}
-# Ask for a password twice, saving the input in $_password.
+# Ask for a password twice showing prompt $1. Ensure both inputs are identical
+# and save it in $_password.
ask_password() {
local _q=$1