diff options
| author | Roy Marples <roy@marples.name> | 2009-03-18 21:16:33 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2009-03-18 21:16:33 +0000 |
| commit | 194b1fcb081f274e5759158267bf930f1bf57708 (patch) | |
| tree | 0cc242b152beb1847c00569e2ce9e5474a1820e7 /if-bsd.c | |
| parent | 918338f28048ad570ce0fcaf148d05c2bde26ed2 (diff) | |
| download | dhcpcd-194b1fcb081f274e5759158267bf930f1bf57708.tar.xz | |
Fix compile on DragonFly.
Thanks to Hasso Tepper.
Diffstat (limited to 'if-bsd.c')
| -rw-r--r-- | if-bsd.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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> |
