mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a quoting problem I introduced.
Fix a tiny style problem while I'm here. Submitted by: knu
This commit is contained in:
parent
4a24038b4c
commit
d3ee161f8b
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue