diff options
author | dougb <dougb@FreeBSD.org> | 2000-12-26 20:55:18 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2000-12-26 20:55:18 +0000 |
commit | f098081774f1822251bd656c6cd043ee97601f3d (patch) | |
tree | 53ec422ba7eaf4e74825fab6f2705ce1e456eed6 /etc | |
parent | 05c5536b8f879bbe3cc597b1384a7e46d6f440d3 (diff) | |
download | FreeBSD-src-f098081774f1822251bd656c6cd043ee97601f3d.zip FreeBSD-src-f098081774f1822251bd656c6cd043ee97601f3d.tar.gz |
Fix a quoting problem I introduced.
Fix a tiny style problem while I'm here.
Submitted by: knu
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/netstart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/netstart b/etc/netstart index d27e519..58d05a7 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 |