=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/rc,v retrieving revision 1.122 retrieving revision 1.123 diff -c -r1.122 -r1.123 *** src/etc/rc 1999/10/15 19:51:29 1.122 --- src/etc/rc 1999/10/18 01:46:24 1.123 *************** *** 1,4 **** ! # $OpenBSD: rc,v 1.122 1999/10/15 19:51:29 deraadt Exp $ # System startup script run by init on autoboot # or after single-user. --- 1,4 ---- ! # $OpenBSD: rc,v 1.123 1999/10/18 01:46:24 deraadt Exp $ # System startup script run by init on autoboot # or after single-user. *************** *** 451,461 **** fi if [ X"${sshd}" == X"YES" ]; then ! if [ -x /usr/sbin/sshd ]; then ! if /usr/sbin/sshd -Q ; then ! echo -n ' sshd'; ! #echo -n ' sshd(2022)'; /usr/sbin/sshd -p 2022 ! fi elif [ -x /usr/local/sbin/sshd ]; then /usr/local/sbin/sshd echo -n ' sshd'; --- 451,459 ---- fi if [ X"${sshd}" == X"YES" ]; then ! if test -x /usr/sbin/sshd && /usr/sbin/sshd -Q ; then ! echo -n ' sshd'; ! #echo -n ' sshd(2022)'; /usr/sbin/sshd -p 2022 elif [ -x /usr/local/sbin/sshd ]; then /usr/local/sbin/sshd echo -n ' sshd';