Fix a quoting problem I introduced.

Fix a tiny style problem while I'm here.

Submitted by:	knu
This commit is contained in:
Doug Barton 2000-12-26 20:55:18 +00:00
parent 4a24038b4c
commit d3ee161f8b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70378

View File

@ -47,10 +47,10 @@ if [ -r /etc/rc.pccard ]; then
. /etc/rc.pccard
fi
if [ -f /etc/rc.network ]; then
if [ -r /etc/rc.network ]; then
. /etc/rc.network
else
echo 'Sorry, I can't find /etc/rc.network - aborting'
echo 'Sorry, I cannot find /etc/rc.network - aborting'
exit 1
fi