summaryrefslogtreecommitdiffstats
path: root/userspace
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2010-12-18 16:15:49 +0000
committerBart De Schuymer <bdschuym@pandora.be>2010-12-18 16:15:49 +0000
commit74475af3b392a5fc3f21141fa060734b5bea2366 (patch)
treeb23cafc5b8da1c1d0935a498ddb675ea5631b052 /userspace
parenta95517ba2f2579b7b831a17094c1a3a07062d307 (diff)
put include of ebtables_u.h higher so that __EXPORTED_HEADERS__ is defined
Diffstat (limited to 'userspace')
-rw-r--r--userspace/ebtables2/extensions/ebt_among.c2
-rw-r--r--userspace/ebtables2/extensions/ebt_arpreply.c2
-rw-r--r--userspace/ebtables2/extensions/ebt_nat.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/userspace/ebtables2/extensions/ebt_among.c b/userspace/ebtables2/extensions/ebt_among.c
index d6c6885..f90438e 100644
--- a/userspace/ebtables2/extensions/ebt_among.c
+++ b/userspace/ebtables2/extensions/ebt_among.c
@@ -12,8 +12,8 @@
#include <getopt.h>
#include <ctype.h>
#include <unistd.h>
-#include <netinet/ether.h>
#include "../include/ebtables_u.h"
+#include <netinet/ether.h>
#include "../include/ethernetdb.h"
#include <linux/if_ether.h>
#include <linux/netfilter_bridge/ebt_among.h>
diff --git a/userspace/ebtables2/extensions/ebt_arpreply.c b/userspace/ebtables2/extensions/ebt_arpreply.c
index 0b81b1c..c3757f3 100644
--- a/userspace/ebtables2/extensions/ebt_arpreply.c
+++ b/userspace/ebtables2/extensions/ebt_arpreply.c
@@ -10,9 +10,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <netinet/ether.h>
#include <getopt.h>
#include "../include/ebtables_u.h"
+#include <netinet/ether.h>
#include <linux/netfilter_bridge/ebt_arpreply.h>
static int mac_supplied;
diff --git a/userspace/ebtables2/extensions/ebt_nat.c b/userspace/ebtables2/extensions/ebt_nat.c
index 8c4dab8..e6afbf8 100644
--- a/userspace/ebtables2/extensions/ebt_nat.c
+++ b/userspace/ebtables2/extensions/ebt_nat.c
@@ -9,9 +9,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <netinet/ether.h>
#include <getopt.h>
#include "../include/ebtables_u.h"
+#include <netinet/ether.h>
#include <linux/netfilter_bridge/ebt_nat.h>
static int to_source_supplied, to_dest_supplied;