From d3ee161f8bf0a2ac0d8e3f41f76878a6025e197a Mon Sep 17 00:00:00 2001 From: Doug Barton Date: Tue, 26 Dec 2000 20:55:18 +0000 Subject: [PATCH] Fix a quoting problem I introduced. Fix a tiny style problem while I'm here. Submitted by: knu --- etc/netstart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/netstart b/etc/netstart index d27e51928b3..58d05a75dfa 100755 --- a/etc/netstart +++ b/etc/netstart @@ -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