summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorMarco S Hyman <marc@cvs.openbsd.org>2003-03-23 18:45:35 +0000
committerMarco S Hyman <marc@cvs.openbsd.org>2003-03-23 18:45:35 +0000
commitc51f9092c732c823ea641063a7a385729d5fc583 (patch)
tree0662a4d539c5dc968c7bc08bbdb2a7a85e9e4441 /etc
parentba849485b0e45cc0ffcdd3b78750fefc941fe160 (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/rc6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc b/etc/rc
index 2e07a173c03..a301758fb1e 100644
--- a/etc/rc
+++ b/etc/rc
@@ -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