fix if test for rwhod.

This commit is contained in:
Scott Mace 1994-11-17 08:28:02 +00:00
parent d9a5a8b8c2
commit 4f64b36cda
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4540

4
etc/rc
View File

@ -1,5 +1,5 @@
#!/bin/sh
# $Id: rc,v 1.38 1994/11/02 09:41:35 ache Exp $
# $Id: rc,v 1.39 1994/11/07 04:02:26 phk Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@ -193,7 +193,7 @@ fi
# $rwhod is imported from /etc/netstart;
# if $rwhod is set to something other than NO, rwhod is run.
if [ ${rwhod-NO} != "NO" ]; then
if [ X"${rwhod}" != X"NO" ]; then
echo -n ' rwhod'; rwhod
fi