mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix reverse logic bug which caused the ethernet configuration to never work.
This commit is contained in:
parent
2922666380
commit
1f3a4e3ffa
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ if [ -f /etc/sysconfig ]; then
|
|||
. /etc/sysconfig
|
||||
fi
|
||||
|
||||
if [ "x$pccard_ifconfig" = "xNO" ] ; then
|
||||
if [ "x$pccard_ifconfig" != "xNO" ] ; then
|
||||
if [ "x$pccard_ifconfig" = "xDHCP" ] ; then
|
||||
# DHCP currently not implemented
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue