aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter_bridge/ebtables.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/netfilter_bridge/ebtables.h b/include/linux/netfilter_bridge/ebtables.h
index f20a57da7a25..d3f9243b9d9b 100644
--- a/include/linux/netfilter_bridge/ebtables.h
+++ b/include/linux/netfilter_bridge/ebtables.h
@@ -124,7 +124,7 @@ struct ebt_entry_match
124{ 124{
125 union { 125 union {
126 char name[EBT_FUNCTION_MAXNAMELEN]; 126 char name[EBT_FUNCTION_MAXNAMELEN];
127 struct ebt_match *match; 127 struct xt_match *match;
128 } u; 128 } u;
129 /* size of data */ 129 /* size of data */
130 unsigned int match_size; 130 unsigned int match_size;
@@ -135,7 +135,7 @@ struct ebt_entry_watcher
135{ 135{
136 union { 136 union {
137 char name[EBT_FUNCTION_MAXNAMELEN]; 137 char name[EBT_FUNCTION_MAXNAMELEN];
138 struct ebt_watcher *watcher; 138 struct xt_target *watcher;
139 } u; 139 } u;
140 /* size of data */ 140 /* size of data */
141 unsigned int watcher_size; 141 unsigned int watcher_size;
@@ -146,7 +146,7 @@ struct ebt_entry_target
146{ 146{
147 union { 147 union {
148 char name[EBT_FUNCTION_MAXNAMELEN]; 148 char name[EBT_FUNCTION_MAXNAMELEN];
149 struct ebt_target *target; 149 struct xt_target *target;
150 } u; 150 } u;
151 /* size of data */ 151 /* size of data */
152 unsigned int target_size; 152 unsigned int target_size;