summaryrefslogtreecommitdiffstats
path: root/extensions/libipt_quota.c
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/libipt_quota.c')
-rw-r--r--extensions/libipt_quota.c25
1 files changed, 13 insertions, 12 deletions
diff --git a/extensions/libipt_quota.c b/extensions/libipt_quota.c
index 078f9e35..b0de7adb 100644
--- a/extensions/libipt_quota.c
+++ b/extensions/libipt_quota.c
@@ -93,18 +93,19 @@ final_check(unsigned int flags)
{
}
-struct iptables_match quota = { NULL,
- "quota",
- IPTABLES_VERSION,
- IPT_ALIGN(sizeof (struct ipt_quota_info)),
- IPT_ALIGN(sizeof (struct ipt_quota_info)),
- &help,
- &init,
- &parse,
- &final_check,
- &print,
- &save,
- opts
+struct iptables_match quota = {
+ .next = NULL,
+ .name = "quota",
+ .version = IPTABLES_VERSION,
+ .size = IPT_ALIGN(sizeof (struct ipt_quota_info)),
+ .userspacesize = IPT_ALIGN(sizeof (struct ipt_quota_info)),
+ .help = &help,
+ .init = &init,
+ .parse = &parse,
+ .final_check = &final_check,
+ .print = &print,
+ .save = &save,
+ .extra_opts = opts
};
void