summaryrefslogtreecommitdiffstats
path: root/extensions/libipt_NETLINK.c
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/libipt_NETLINK.c')
-rw-r--r--extensions/libipt_NETLINK.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/extensions/libipt_NETLINK.c b/extensions/libipt_NETLINK.c
index 9e719903..9cc190c2 100644
--- a/extensions/libipt_NETLINK.c
+++ b/extensions/libipt_NETLINK.c
@@ -136,19 +136,19 @@ print(const struct ipt_ip *ip,
printf("nlsize %i ", nld->size);
}
-static
-struct iptables_target netlink = { NULL,
- "NETLINK",
- IPTABLES_VERSION,
- IPT_ALIGN(sizeof(struct ipt_nldata)),
- IPT_ALIGN(sizeof(struct ipt_nldata)),
- &help,
- &init,
- &parse,
- &final_check,
- &print,
- &save,
- opts
+static struct iptables_target netlink = {
+ .next = NULL,
+ .name = "NETLINK",
+ .version = IPTABLES_VERSION,
+ .size = IPT_ALIGN(sizeof(struct ipt_nldata)),
+ .userspacesize = IPT_ALIGN(sizeof(struct ipt_nldata)),
+ .help = &help,
+ .init = &init,
+ .parse = &parse,
+ .final_check = &final_check,
+ .print = &print,
+ .save = &save,
+ .extra_opts = opts
};
void _init(void)