summaryrefslogtreecommitdiffstats
path: root/extensions/libipt_MARK.c
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/libipt_MARK.c')
-rw-r--r--extensions/libipt_MARK.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/extensions/libipt_MARK.c b/extensions/libipt_MARK.c
index 56b09f5..bc3dd42 100644
--- a/extensions/libipt_MARK.c
+++ b/extensions/libipt_MARK.c
@@ -110,19 +110,19 @@ save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
}
static
-struct iptables_target mark
-= { NULL,
- "MARK",
- IPTABLES_VERSION,
- IPT_ALIGN(sizeof(struct ipt_mark_target_info)),
- IPT_ALIGN(sizeof(struct ipt_mark_target_info)),
- &help,
- &init,
- &parse,
- &final_check,
- &print,
- &save,
- opts
+struct iptables_target mark = {
+ .next = NULL,
+ .name = "MARK",
+ .version = IPTABLES_VERSION,
+ .size = IPT_ALIGN(sizeof(struct ipt_mark_target_info)),
+ .userspacesize = IPT_ALIGN(sizeof(struct ipt_mark_target_info)),
+ .help = &help,
+ .init = &init,
+ .parse = &parse,
+ .final_check = &final_check,
+ .print = &print,
+ .save = &save,
+ .extra_opts = opts
};
void _init(void)