diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2003-03-23 18:45:35 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2003-03-23 18:45:35 +0000 |
commit | c51f9092c732c823ea641063a7a385729d5fc583 (patch) | |
tree | 0662a4d539c5dc968c7bc08bbdb2a7a85e9e4441 /etc | |
parent | ba849485b0e45cc0ffcdd3b78750fefc941fe160 (diff) |
Fix operational typo. Bug reported by William Yodlowsky
bsd at openbsd dot rutgers dot edu. OK millert@, others.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.224 2003/03/21 20:33:24 todd Exp $ +# $OpenBSD: rc,v 1.225 2003/03/23 18:45:34 marc Exp $ # System startup script run by init on autoboot # or after single-user. @@ -558,11 +558,11 @@ echo '.' if [ -x /sbin/wsconsctl -a -f /etc/wsconsctl.conf ]; then ( # delete comments and blank lines - saveIFS=$IFS + save_IFS="$IFS" IFS=" " set -- `stripcom /etc/wsconsctl.conf` - IFS=$save_IFS + IFS="$save_IFS" while [ $# -ge 1 ] ; do eval /sbin/wsconsctl -w $1 shift |