diff options
author | Bart De Schuymer <bdschuym@pandora.be> | 2010-12-18 16:15:49 +0000 |
---|---|---|
committer | Bart De Schuymer <bdschuym@pandora.be> | 2010-12-18 16:15:49 +0000 |
commit | 57633b17a6bb4b737b13929dcc952fc04b92e0bd (patch) | |
tree | cc2e39045234a5f0fb8e6bebe97565c1dc0503e3 | |
parent | db01774849084cc63d47fda04d867c088586e3a4 (diff) | |
download | ebtables-57633b17a6bb4b737b13929dcc952fc04b92e0bd.tar.gz ebtables-57633b17a6bb4b737b13929dcc952fc04b92e0bd.tar.bz2 ebtables-57633b17a6bb4b737b13929dcc952fc04b92e0bd.zip |
put include of ebtables_u.h higher so that __EXPORTED_HEADERS__ is defined
-rw-r--r-- | extensions/ebt_among.c | 2 | ||||
-rw-r--r-- | extensions/ebt_arpreply.c | 2 | ||||
-rw-r--r-- | extensions/ebt_nat.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/extensions/ebt_among.c b/extensions/ebt_among.c index d6c6885..f90438e 100644 --- a/extensions/ebt_among.c +++ b/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/extensions/ebt_arpreply.c b/extensions/ebt_arpreply.c index 0b81b1c..c3757f3 100644 --- a/extensions/ebt_arpreply.c +++ b/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/extensions/ebt_nat.c b/extensions/ebt_nat.c index 8c4dab8..e6afbf8 100644 --- a/extensions/ebt_nat.c +++ b/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; |