=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/rc,v retrieving revision 1.213 retrieving revision 1.214 diff -c -r1.213 -r1.214 *** src/etc/rc 2003/01/03 18:39:58 1.213 --- src/etc/rc 2003/01/06 20:40:39 1.214 *************** *** 1,4 **** ! # $OpenBSD: rc,v 1.213 2003/01/03 18:39:58 miod Exp $ # System startup script run by init on autoboot # or after single-user. --- 1,4 ---- ! # $OpenBSD: rc,v 1.214 2003/01/06 20:40:39 marc Exp $ # System startup script run by init on autoboot # or after single-user. *************** *** 544,555 **** echo '.' ! if [ -f /etc/wsconsctl.conf ]; then ( # delete comments and blank lines set -- `stripcom /etc/wsconsctl.conf` while [ $# -ge 1 ] ; do ! wsconsctl -w $1 shift done ) --- 544,559 ---- echo '.' ! if [ -x /sbin/wsconsctl -a -f /etc/wsconsctl.conf ]; then ( # delete comments and blank lines + saveIFS=$IFS + IFS=" + " set -- `stripcom /etc/wsconsctl.conf` + IFS=$save_IFS while [ $# -ge 1 ] ; do ! eval /sbin/wsconsctl -w $1 shift done )