diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-06-01 21:01:29 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-06-01 21:01:29 +0000 |
commit | dae2ea569d8a8612b8fd67fc2c1e74983d42ed04 (patch) | |
tree | e1461c138cabe1e33da3cb6cb9189602c7cb9285 /distrib | |
parent | 34d3cdae732e3226872b911bdc04e2e2789f8c21 (diff) |
Add missing -n flag to getresp; noted by maurice@ivo.ig.net
Diffstat (limited to 'distrib')
-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 8becb3a6c23..3ad8e8667e6 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.72 2000/05/07 17:08:26 millert Exp $ +# $OpenBSD: install.sh,v 1.73 2000/06/01 21:01:28 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 @@ -387,7 +387,7 @@ while [ "X${resp}" = X"" ]; do echo -n "Password (again): " stty -echo - getresp "" + getresp -n "" stty echo echo if [ "${_password}" != "${resp}" ]; then |