summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-06-02 02:22:19 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-06-02 02:22:19 +0000
commit7ab9e0dd3373266da4d1ef5182dd6a38e9026fe7 (patch)
treec0ea73cf4f71ec64af3d637d27b37bb356e65e28
parente0356a091a1c656a5706aaabbf249307aef02b58 (diff)
Don't use given password as default when prompting for passwd a second
time; matter@superlink.net
-rw-r--r--distrib/miniroot/install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh
index 4a54f53a0d4..b7ee3dc564d 100644
--- a/distrib/miniroot/install.sh
+++ b/distrib/miniroot/install.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sh,v 1.23 1998/04/11 09:47:27 deraadt Exp $
+# $OpenBSD: install.sh,v 1.24 1998/06/02 02:22:18 millert Exp $
# $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
@@ -499,7 +499,7 @@ while [ "X${resp}" = X"" ]; do
echo -n "Password (again): "
stty -echo
- getresp "${_password}"
+ getresp ""
stty echo
echo ""
if [ "${_password}" != "${resp}" ]; then