summaryrefslogtreecommitdiffstats
path: root/extensions/ebt_802_3.c
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/ebt_802_3.c')
-rw-r--r--extensions/ebt_802_3.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/extensions/ebt_802_3.c b/extensions/ebt_802_3.c
index 953a115..52b05aa 100644
--- a/extensions/ebt_802_3.c
+++ b/extensions/ebt_802_3.c
@@ -127,15 +127,15 @@ static int compare(const struct ebt_entry_match *m1,
static struct ebt_u_match _802_3_match =
{
- EBT_802_3_MATCH,
- sizeof(struct ebt_802_3_info),
- print_help,
- init,
- parse,
- final_check,
- print,
- compare,
- opts
+ .name = EBT_802_3_MATCH,
+ .size = sizeof(struct ebt_802_3_info),
+ .help = print_help,
+ .init = init,
+ .parse = parse,
+ .final_check = final_check,
+ .print = print,
+ .compare = compare,
+ .extra_ops = opts,
};
static void _init(void) __attribute__ ((constructor));