From 02aa73312d6078b6de26757d5a558e0085ec20b5 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 1 Feb 2005 15:38:20 +0000 Subject: make structure initializers use C99 standard (Harald Welte) --- extensions/libip6t_multiport.c | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) (limited to 'extensions/libip6t_multiport.c') diff --git a/extensions/libip6t_multiport.c b/extensions/libip6t_multiport.c index 2dc406d1..0206c1d8 100644 --- a/extensions/libip6t_multiport.c +++ b/extensions/libip6t_multiport.c @@ -249,20 +249,18 @@ static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match printf(" "); } -static -struct ip6tables_match multiport -= { NULL, - "multiport", - IPTABLES_VERSION, - IP6T_ALIGN(sizeof(struct ip6t_multiport)), - IP6T_ALIGN(sizeof(struct ip6t_multiport)), - &help, - &init, - &parse, - &final_check, - &print, - &save, - opts +static struct ip6tables_match multiport = { + .name = "multiport", + .version = IPTABLES_VERSION, + .size = IP6T_ALIGN(sizeof(struct ip6t_multiport)), + .userspacesize = IP6T_ALIGN(sizeof(struct ip6t_multiport)), + .help = &help, + .init = &init, + .parase = &parse, + .final_check = &final_check, + .print = &print, + .save = &save, + .extra_opts = opts, }; void -- cgit v1.2.3