Fix compile on NetBSD for vlan
Shuffle includes above system ones so to fix a compile issue on NetBSD where the if_type #define from <net/if.h> conflicts with the wpa_driver_if_type enum. Signed-off-by: Roy Marples <roy@marples.name>
This commit is contained in:
parent
a084c24469
commit
a5a3efccc2
1 changed files with 8 additions and 7 deletions
|
@ -9,13 +9,6 @@
|
|||
*/
|
||||
|
||||
#include "utils/includes.h"
|
||||
#include <net/if.h>
|
||||
#include <sys/ioctl.h>
|
||||
#ifdef CONFIG_FULL_DYNAMIC_VLAN
|
||||
#include <linux/sockios.h>
|
||||
#include <linux/if_vlan.h>
|
||||
#include <linux/if_bridge.h>
|
||||
#endif /* CONFIG_FULL_DYNAMIC_VLAN */
|
||||
|
||||
#include "utils/common.h"
|
||||
#include "hostapd.h"
|
||||
|
@ -25,6 +18,14 @@
|
|||
#include "vlan_init.h"
|
||||
#include "vlan_util.h"
|
||||
|
||||
#include <net/if.h>
|
||||
#include <sys/ioctl.h>
|
||||
#ifdef CONFIG_FULL_DYNAMIC_VLAN
|
||||
#include <linux/sockios.h>
|
||||
#include <linux/if_vlan.h>
|
||||
#include <linux/if_bridge.h>
|
||||
#endif /* CONFIG_FULL_DYNAMIC_VLAN */
|
||||
|
||||
|
||||
#ifdef CONFIG_FULL_DYNAMIC_VLAN
|
||||
|
||||
|
|
Loading…
Reference in a new issue