diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-06-02 02:22:19 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-06-02 02:22:19 +0000 |
commit | 7ab9e0dd3373266da4d1ef5182dd6a38e9026fe7 (patch) | |
tree | c0ea73cf4f71ec64af3d637d27b37bb356e65e28 | |
parent | e0356a091a1c656a5706aaabbf249307aef02b58 (diff) |
Don't use given password as default when prompting for passwd a second
time; matter@superlink.net
-rw-r--r-- | distrib/miniroot/install.sh | 4 |
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 |