diff options
Diffstat (limited to 'extensions/libipt_comment.c')
-rw-r--r-- | extensions/libipt_comment.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/extensions/libipt_comment.c b/extensions/libipt_comment.c index 778051e8..253b267f 100644 --- a/extensions/libipt_comment.c +++ b/extensions/libipt_comment.c @@ -107,18 +107,18 @@ save(const struct ipt_ip *ip, const struct ipt_entry_match *match) } static struct iptables_match comment = { - NULL, - "comment", - IPTABLES_VERSION, - IPT_ALIGN(sizeof(struct ipt_comment_info)), - IPT_ALIGN(sizeof(struct ipt_comment_info)), - &help, - &init, - &parse, - &final_check, - &print, - &save, - opts + .next = NULL, + .name = "comment", + .version = IPTABLES_VERSION, + .size = IPT_ALIGN(sizeof(struct ipt_comment_info)), + .userspacesize = IPT_ALIGN(sizeof(struct ipt_comment_info)), + .help = &help, + .init = &init, + .parse = &parse, + .final_check = &final_check, + .print = &print, + .save = &save, + .extra_opts = opts }; void _init(void) |