[1416] in NetBSD-Development
Bug in /srvd/install/questions
daemon@ATHENA.MIT.EDU (Nathan J. Williams)
Fri Jan 31 02:57:51 1997
To: netbsd-dev@MIT.EDU
From: "Nathan J. Williams" <nathanw@MIT.EDU>
Date: Fri, 31 Jan 1997 02:52:06 EST
The question "Do you accept these values? [yes] " only accepts
the values "y" and "n". Since the default is "yes" this is especially
goofy.
Fix below.
- Nathan
*** questions Sat Nov 2 12:48:34 1996
--- /tmp/questions Fri Jan 31 02:48:07 1997
***************
*** 340,348 ****
getresp yes
case "$resp" in
! y)
;;
! n)
echo "Okay, trying again."
exec /srvd/install/questions
esac
--- 340,348 ----
getresp yes
case "$resp" in
! y*)
;;
! n*)
echo "Okay, trying again."
exec /srvd/install/questions
esac