diff options
Diffstat (limited to 'extensions/libip6t_udp.c')
-rw-r--r-- | extensions/libip6t_udp.c | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/extensions/libip6t_udp.c b/extensions/libip6t_udp.c index 139386cd..73e1d1e9 100644 --- a/extensions/libip6t_udp.c +++ b/extensions/libip6t_udp.c @@ -233,20 +233,18 @@ static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match } } -static -struct ip6tables_match udp -= { NULL, - "udp", - IPTABLES_VERSION, - IP6T_ALIGN(sizeof(struct ip6t_udp)), - IP6T_ALIGN(sizeof(struct ip6t_udp)), - &help, - &init, - &parse, - &final_check, - &print, - &save, - opts +static struct ip6tables_match udp = { + .name = "udp", + .version = IPTABLES_VERSION, + .size = IP6T_ALIGN(sizeof(struct ip6t_udp)), + .userspacesize = IP6T_ALIGN(sizeof(struct ip6t_udp)), + .help = &help, + .init = &init, + .parse = &parse, + .final_check = &final_check, + .print = &print, + .save = &save, + .extra_opts = opts, }; void |