I was building the current OpenSSL_0_9_7-stable branch on my Solaris 8 box and noticed after running config my terminal kept scrolling ...... [EMAIL PROTECTED] 52% Use "logout" to logout. [EMAIL PROTECTED] 52% Use "logout" to logout. ......

I tracked it down to this line.
(stty -icanon min 0 time 50; read waste) < /dev/tty

Changing the stty values and not putting them back is unacceptable.
Something like this is more appropriate.

STTY=`stty -g`
trap "stty $STTY" 2
(stty -icanon min 0 time 50; read waste) < /dev/tty
stty $STTY


-- Tim Rice Multitalents (707) 887-1469 [EMAIL PROTECTED]


______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [EMAIL PROTECTED]

Reply via email to