mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 17:23:35 +00:00
Fix reverse logic bug which caused the ethernet configuration to never work.
This commit is contained in:
parent
2922666380
commit
1f3a4e3ffa
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15366
@ -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 New Issue
Block a user