Fix reverse logic bug which caused the ethernet configuration to never work.

This commit is contained in:
Nate Williams 1996-04-24 00:04:10 +00:00
parent 2922666380
commit 1f3a4e3ffa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15366

View File

@ -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