diff --git a/ChangeLog b/ChangeLog index f7768f7dac..866a077767 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-02-10 Dan Williams + + Patch from Tom Parker: + * src/NetworkManagerDevice.c + - Remove the "#include " since both the ethtool.h and + mii.h headers are broken, and instead use our own typedefs + 2005-02-10 Dan Williams * dhcpcd/buildmsg.c diff --git a/src/NetworkManagerDevice.c b/src/NetworkManagerDevice.c index 860309c237..c72badf6cc 100644 --- a/src/NetworkManagerDevice.c +++ b/src/NetworkManagerDevice.c @@ -3608,10 +3608,15 @@ void nm_device_config_set_ip4_broadcast (NMDevice *dev, guint32 broadcast) } +/* Define types for stupid headers */ +typedef u_int8_t u8; +typedef u_int16_t u16; +typedef u_int32_t u32; + + /**************************************/ /* Ethtool capability detection */ /**************************************/ -#include #include #include