mirror of
https://github.com/rsmarples/dhcpcd.git
synced 2024-11-24 18:44:10 +08:00
Fix compile on DragonFly.
Thanks to Hasso Tepper.
This commit is contained in:
parent
918338f280
commit
194b1fcb08
6
if-bsd.c
6
if-bsd.c
@ -38,7 +38,11 @@
|
||||
#include <net/if_types.h>
|
||||
#include <net/route.h>
|
||||
#include <netinet/in.h>
|
||||
#include <net80211/ieee80211_ioctl.h>
|
||||
#ifdef __DragonFly__
|
||||
# include <netproto/802_11/ieee80211_ioctl.h>
|
||||
#else
|
||||
# include <net80211/ieee80211_ioctl.h>
|
||||
#endif
|
||||
|
||||
#include <errno.h>
|
||||
#include <fnmatch.h>
|
||||
|
Loading…
Reference in New Issue
Block a user