summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-06-16 09:20:22 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-06-16 09:20:22 +0000
commit21ddbbe969aba9d9e5698488b23425e07065acc7 (patch)
tree7b1418b4943e8eb4686d0d20753c496e345aed06
parent1347e089f1f90e4b51124c54a8e0437339dafed3 (diff)
permute includes to get this to compile
-rw-r--r--userspace/ebtables2/extensions/ebt_vlan.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/userspace/ebtables2/extensions/ebt_vlan.c b/userspace/ebtables2/extensions/ebt_vlan.c
index b905f44..2379f97 100644
--- a/userspace/ebtables2/extensions/ebt_vlan.c
+++ b/userspace/ebtables2/extensions/ebt_vlan.c
@@ -13,17 +13,16 @@
* License: GPL
*
*/
-
-#include <getopt.h>
-#include <netinet/in.h>
+
#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
#include <sys/socket.h>
-
-#include <linux/netfilter_bridge/ebt_vlan.h>
+#include <netinet/in.h>
+#include <string.h>
#include <linux/netfilter_bridge/ebtables.h>
+#include <getopt.h>
#include "../include/ebtables_u.h"
+#include <linux/netfilter_bridge/ebt_vlan.h>
#define VLAN_ID '1'
#define VLAN_PRIO '2'