[netfilter-cvslog] r6971 - trunk/iptables/extensions

yasuyuki at netfilter.org yasuyuki at netfilter.org
Mon Jul 30 15:38:45 CEST 2007


Author: yasuyuki at netfilter.org
Date: 2007-07-30 15:38:44 +0200 (Mon, 30 Jul 2007)
New Revision: 6971

Modified:
   trunk/iptables/extensions/libip6t_TRACE.c
   trunk/iptables/extensions/libip6t_state.c
   trunk/iptables/extensions/libipt_CLASSIFY.c
   trunk/iptables/extensions/libipt_CLUSTERIP.c
   trunk/iptables/extensions/libipt_CONNSECMARK.c
   trunk/iptables/extensions/libipt_DNAT.c
   trunk/iptables/extensions/libipt_DSCP.c
   trunk/iptables/extensions/libipt_ECN.c
   trunk/iptables/extensions/libipt_MARK.c
   trunk/iptables/extensions/libipt_MIRROR.c
   trunk/iptables/extensions/libipt_NETMAP.c
   trunk/iptables/extensions/libipt_REDIRECT.c
   trunk/iptables/extensions/libipt_REJECT.c
   trunk/iptables/extensions/libipt_SAME.c
   trunk/iptables/extensions/libipt_SNAT.c
   trunk/iptables/extensions/libipt_TOS.c
   trunk/iptables/extensions/libipt_TRACE.c
   trunk/iptables/extensions/libipt_ULOG.c
   trunk/iptables/extensions/libipt_addrtype.c
   trunk/iptables/extensions/libipt_ah.c
   trunk/iptables/extensions/libipt_connbytes.c
   trunk/iptables/extensions/libipt_connrate.c
   trunk/iptables/extensions/libipt_conntrack.c
   trunk/iptables/extensions/libipt_helper.c
   trunk/iptables/extensions/libipt_icmp.c
   trunk/iptables/extensions/libipt_iprange.c
   trunk/iptables/extensions/libipt_owner.c
   trunk/iptables/extensions/libipt_recent.c
   trunk/iptables/extensions/libipt_state.c
   trunk/iptables/extensions/libipt_tos.c
   trunk/iptables/extensions/libipt_ttl.c
   trunk/iptables/extensions/libipt_unclean.c
   trunk/iptables/extensions/libxt_NFQUEUE.c
   trunk/iptables/extensions/libxt_SECMARK.c
   trunk/iptables/extensions/libxt_TCPMSS.c
   trunk/iptables/extensions/libxt_comment.c
   trunk/iptables/extensions/libxt_dscp.c
   trunk/iptables/extensions/libxt_esp.c
   trunk/iptables/extensions/libxt_length.c
   trunk/iptables/extensions/libxt_limit.c
   trunk/iptables/extensions/libxt_mac.c
   trunk/iptables/extensions/libxt_mark.c
   trunk/iptables/extensions/libxt_multiport.c
   trunk/iptables/extensions/libxt_physdev.c
   trunk/iptables/extensions/libxt_pkttype.c
   trunk/iptables/extensions/libxt_quota.c
   trunk/iptables/extensions/libxt_standard.c
   trunk/iptables/extensions/libxt_tcp.c
   trunk/iptables/extensions/libxt_tcpmss.c
   trunk/iptables/extensions/libxt_udp.c
Log:
Remove the .next=NULL field. This is automatically initialized to zero.
I've kept .print=NULL and .save=NULL so it stands out
(since iptables will do the print/save then).

Signed-off-by: Jan Engelhardt <jengelh at gmx.de>




Modified: trunk/iptables/extensions/libip6t_TRACE.c
===================================================================
--- trunk/iptables/extensions/libip6t_TRACE.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libip6t_TRACE.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -43,7 +43,7 @@
 
 static
 struct ip6tables_target trace 
-= {	.next = NULL,
+= {
 	.name = "TRACE",
 	.version = IPTABLES_VERSION,
 	.size = IP6T_ALIGN(0),

Modified: trunk/iptables/extensions/libip6t_state.c
===================================================================
--- trunk/iptables/extensions/libip6t_state.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libip6t_state.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -144,7 +144,6 @@
 }
 
 static struct ip6tables_match state = { 
-	.next		= NULL,
 	.name		= "state",
 	.version	= IPTABLES_VERSION,
 	.size		= IP6T_ALIGN(sizeof(struct ipt_state_info)),

Modified: trunk/iptables/extensions/libipt_CLASSIFY.c
===================================================================
--- trunk/iptables/extensions/libipt_CLASSIFY.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_CLASSIFY.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -109,7 +109,6 @@
 }
 
 static struct iptables_target classify = { 
-	.next		= NULL,
 	.name		= "CLASSIFY",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_classify_target_info)),

Modified: trunk/iptables/extensions/libipt_CLUSTERIP.c
===================================================================
--- trunk/iptables/extensions/libipt_CLUSTERIP.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_CLUSTERIP.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -248,7 +248,6 @@
 }
 
 static struct iptables_target clusterip = { 
-	.next		= NULL,
 	.name		= "CLUSTERIP",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_clusterip_tgt_info)),

Modified: trunk/iptables/extensions/libipt_CONNSECMARK.c
===================================================================
--- trunk/iptables/extensions/libipt_CONNSECMARK.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_CONNSECMARK.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -106,7 +106,6 @@
 }
 
 static struct iptables_target connsecmark = {
-	.next		= NULL,
 	.name		= "CONNSECMARK",
 	.version	= IPTABLES_VERSION,
 	.revision	= 0,

Modified: trunk/iptables/extensions/libipt_DNAT.c
===================================================================
--- trunk/iptables/extensions/libipt_DNAT.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_DNAT.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -249,7 +249,6 @@
 }
 
 static struct iptables_target dnat = { 
-	.next		= NULL,
 	.name		= "DNAT",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ip_nat_multi_range)),

Modified: trunk/iptables/extensions/libipt_DSCP.c
===================================================================
--- trunk/iptables/extensions/libipt_DSCP.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_DSCP.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -144,7 +144,6 @@
 }
 
 static struct iptables_target dscp = { 
-	.next		= NULL,
 	.name		= "DSCP",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_DSCP_info)),

Modified: trunk/iptables/extensions/libipt_ECN.c
===================================================================
--- trunk/iptables/extensions/libipt_ECN.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_ECN.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -165,7 +165,6 @@
 
 static
 struct iptables_target ecn = { 
-	.next		= NULL,
 	.name		= "ECN",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_ECN_info)),

Modified: trunk/iptables/extensions/libipt_MARK.c
===================================================================
--- trunk/iptables/extensions/libipt_MARK.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_MARK.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -187,7 +187,6 @@
 
 static
 struct iptables_target mark_v0 = {
-	.next		= NULL,
 	.name		= "MARK",
 	.version	= IPTABLES_VERSION,
 	.revision	= 0,
@@ -204,7 +203,6 @@
 
 static
 struct iptables_target mark_v1 = {
-	.next		= NULL,
 	.name		= "MARK",
 	.version	= IPTABLES_VERSION,
 	.revision	= 1,

Modified: trunk/iptables/extensions/libipt_MIRROR.c
===================================================================
--- trunk/iptables/extensions/libipt_MIRROR.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_MIRROR.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -42,7 +42,6 @@
 }
 
 static struct iptables_target mirror = {
-	.next		= NULL,
 	.name		= "MIRROR",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(0),

Modified: trunk/iptables/extensions/libipt_NETMAP.c
===================================================================
--- trunk/iptables/extensions/libipt_NETMAP.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_NETMAP.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -178,7 +178,6 @@
 }
 
 static struct iptables_target target_module = {
-	.next		= NULL,
 	.name		= MODULENAME,
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ip_nat_multi_range)),

Modified: trunk/iptables/extensions/libipt_REDIRECT.c
===================================================================
--- trunk/iptables/extensions/libipt_REDIRECT.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_REDIRECT.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -170,7 +170,6 @@
 }
 
 static struct iptables_target redir = { 
-	.next		= NULL,
 	.name		= "REDIRECT",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ip_nat_multi_range)),

Modified: trunk/iptables/extensions/libipt_REJECT.c
===================================================================
--- trunk/iptables/extensions/libipt_REJECT.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_REJECT.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -169,7 +169,6 @@
 }
 
 static struct iptables_target reject = { 
-	.next		= NULL,
 	.name		= "REJECT",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_reject_info)),

Modified: trunk/iptables/extensions/libipt_SAME.c
===================================================================
--- trunk/iptables/extensions/libipt_SAME.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_SAME.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -216,7 +216,6 @@
 }
 
 static struct iptables_target same = {
-	.next		= NULL,
 	.name		= "SAME",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_same_info)),

Modified: trunk/iptables/extensions/libipt_SNAT.c
===================================================================
--- trunk/iptables/extensions/libipt_SNAT.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_SNAT.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -251,7 +251,6 @@
 }
 
 static struct iptables_target snat = {
-	.next		= NULL,
 	.name		= "SNAT",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ip_nat_multi_range)),

Modified: trunk/iptables/extensions/libipt_TOS.c
===================================================================
--- trunk/iptables/extensions/libipt_TOS.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_TOS.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -154,7 +154,6 @@
 }
 
 static struct iptables_target tos = {
-	.next		= NULL,
 	.name		= "TOS",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_tos_target_info)),

Modified: trunk/iptables/extensions/libipt_TRACE.c
===================================================================
--- trunk/iptables/extensions/libipt_TRACE.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_TRACE.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -43,7 +43,7 @@
 
 static
 struct iptables_target trace 
-= {	.next = NULL,
+= {
 	.name = "TRACE",
 	.version = IPTABLES_VERSION,
 	.size = IPT_ALIGN(0),

Modified: trunk/iptables/extensions/libipt_ULOG.c
===================================================================
--- trunk/iptables/extensions/libipt_ULOG.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_ULOG.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -193,7 +193,6 @@
 }
 
 static struct iptables_target ulog = {
-	.next		= NULL,
 	.name		= "ULOG",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_ulog_info)),

Modified: trunk/iptables/extensions/libipt_addrtype.c
===================================================================
--- trunk/iptables/extensions/libipt_addrtype.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_addrtype.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -187,7 +187,6 @@
 
 static
 struct iptables_match addrtype = {
-	.next 		= NULL,
 	.name 		= "addrtype",
 	.version 	= IPTABLES_VERSION,
 	.size 		= IPT_ALIGN(sizeof(struct ipt_addrtype_info)),

Modified: trunk/iptables/extensions/libipt_ah.c
===================================================================
--- trunk/iptables/extensions/libipt_ah.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_ah.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -169,7 +169,6 @@
 }
 
 static struct iptables_match ah = { 
-	.next 		= NULL,
 	.name 		= "ah",
 	.version 	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_ah)),

Modified: trunk/iptables/extensions/libipt_connbytes.c
===================================================================
--- trunk/iptables/extensions/libipt_connbytes.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_connbytes.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -186,7 +186,6 @@
 }
 
 static struct iptables_match state = {
-	.next 		= NULL,
 	.name 		= "connbytes",
 	.version 	= IPTABLES_VERSION,
 	.size 		= IPT_ALIGN(sizeof(struct ipt_connbytes_info)),

Modified: trunk/iptables/extensions/libipt_connrate.c
===================================================================
--- trunk/iptables/extensions/libipt_connrate.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_connrate.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -160,7 +160,6 @@
 }
 
 static struct iptables_match state = { 
-	.next 		= NULL,
 	.name		= "connrate",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_connrate_info)),

Modified: trunk/iptables/extensions/libipt_conntrack.c
===================================================================
--- trunk/iptables/extensions/libipt_conntrack.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_conntrack.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -505,7 +505,6 @@
 }
 
 static struct iptables_match conntrack = { 
-	.next 		= NULL,
 	.name		= "conntrack",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_conntrack_info)),

Modified: trunk/iptables/extensions/libipt_helper.c
===================================================================
--- trunk/iptables/extensions/libipt_helper.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_helper.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -83,7 +83,6 @@
 }
 
 static struct iptables_match helper = { 
-	.next		= NULL,
 	.name		= "helper",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_helper_info)),

Modified: trunk/iptables/extensions/libipt_icmp.c
===================================================================
--- trunk/iptables/extensions/libipt_icmp.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_icmp.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -287,7 +287,6 @@
 }
 
 static struct iptables_match icmp = { 
-	.next		= NULL,
 	.name		= "icmp",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_icmp)),

Modified: trunk/iptables/extensions/libipt_iprange.c
===================================================================
--- trunk/iptables/extensions/libipt_iprange.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_iprange.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -165,7 +165,6 @@
 }
 
 static struct iptables_match iprange = { 
-	.next		= NULL,
 	.name		= "iprange",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_iprange_info)),

Modified: trunk/iptables/extensions/libipt_owner.c
===================================================================
--- trunk/iptables/extensions/libipt_owner.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_owner.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -231,7 +231,6 @@
 }
 
 static struct iptables_match owner = { 
-	.next		= NULL,
 	.name		= "owner",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_owner_info)),

Modified: trunk/iptables/extensions/libipt_recent.c
===================================================================
--- trunk/iptables/extensions/libipt_recent.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_recent.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -220,7 +220,6 @@
 
 /* Structure for iptables to use to communicate with module */
 static struct iptables_match recent = { 
-    .next          = NULL,
     .name          = "recent",
     .version       = IPTABLES_VERSION,
     .size          = IPT_ALIGN(sizeof(struct ipt_recent_info)),

Modified: trunk/iptables/extensions/libipt_state.c
===================================================================
--- trunk/iptables/extensions/libipt_state.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_state.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -144,7 +144,6 @@
 }
 
 static struct iptables_match state = { 
-	.next		= NULL,
 	.name		= "state",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_state_info)),

Modified: trunk/iptables/extensions/libipt_tos.c
===================================================================
--- trunk/iptables/extensions/libipt_tos.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_tos.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -153,7 +153,6 @@
 }
 
 static struct iptables_match tos = { 
-	.next		= NULL,
 	.name		= "tos",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_tos_info)),

Modified: trunk/iptables/extensions/libipt_ttl.c
===================================================================
--- trunk/iptables/extensions/libipt_ttl.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_ttl.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -152,7 +152,6 @@
 };
 
 static struct iptables_match ttl = {
-	.next		= NULL,
 	.name		= "ttl",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_ttl_info)),

Modified: trunk/iptables/extensions/libipt_unclean.c
===================================================================
--- trunk/iptables/extensions/libipt_unclean.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libipt_unclean.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -35,7 +35,6 @@
 
 static
 struct iptables_match unclean = { 
-	.next		= NULL,
 	.name		= "unclean",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(0),

Modified: trunk/iptables/extensions/libxt_NFQUEUE.c
===================================================================
--- trunk/iptables/extensions/libxt_NFQUEUE.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_NFQUEUE.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -94,7 +94,6 @@
 }
 
 static struct xtables_target nfqueue = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "NFQUEUE",
 	.version	= IPTABLES_VERSION,
@@ -110,7 +109,6 @@
 };
 
 static struct xtables_target nfqueue6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "NFQUEUE",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_SECMARK.c
===================================================================
--- trunk/iptables/extensions/libxt_SECMARK.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_SECMARK.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -104,7 +104,6 @@
 }
 
 static struct xtables_target secmark = {
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "SECMARK",
 	.version	= IPTABLES_VERSION,
@@ -121,7 +120,6 @@
 };
 
 static struct xtables_target secmark6 = {
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "SECMARK",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_TCPMSS.c
===================================================================
--- trunk/iptables/extensions/libxt_TCPMSS.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_TCPMSS.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -140,7 +140,6 @@
 }
 
 static struct xtables_target mss = {
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "TCPMSS",
 	.version	= IPTABLES_VERSION,
@@ -156,7 +155,6 @@
 };
 
 static struct xtables_target mss6 = {
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "TCPMSS",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_comment.c
===================================================================
--- trunk/iptables/extensions/libxt_comment.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_comment.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -100,7 +100,6 @@
 }
 
 static struct xtables_match comment = {
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "comment",
 	.version	= IPTABLES_VERSION,
@@ -115,7 +114,6 @@
 };
 
 static struct xtables_match comment6 = {
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "comment",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_dscp.c
===================================================================
--- trunk/iptables/extensions/libxt_dscp.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_dscp.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -153,7 +153,6 @@
 }
 
 static struct xtables_match dscp = { 
-	.next 		= NULL,
 	.family		= AF_INET,
 	.name 		= "dscp",
 	.version 	= IPTABLES_VERSION,
@@ -168,7 +167,6 @@
 };
 
 static struct xtables_match dscp6 = { 
-	.next 		= NULL,
 	.family		= AF_INET6,
 	.name 		= "dscp",
 	.version 	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_esp.c
===================================================================
--- trunk/iptables/extensions/libxt_esp.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_esp.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -165,7 +165,6 @@
 }
 
 static struct xtables_match esp = { 
-	.next 		= NULL,
 	.family		= AF_INET,
 	.name 		= "esp",
 	.version 	= IPTABLES_VERSION,
@@ -181,7 +180,6 @@
 };
 
 static struct xtables_match esp6 = { 
-	.next 		= NULL,
 	.family		= AF_INET6,
 	.name 		= "esp",
 	.version 	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_length.c
===================================================================
--- trunk/iptables/extensions/libxt_length.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_length.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -132,7 +132,6 @@
 }
 
 static struct xtables_match length = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "length",
 	.version	= IPTABLES_VERSION,
@@ -147,7 +146,6 @@
 };
 
 static struct xtables_match length6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "length",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_limit.c
===================================================================
--- trunk/iptables/extensions/libxt_limit.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_limit.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -176,7 +176,6 @@
 }
 
 static struct xtables_match limit = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "limit",
 	.version	= IPTABLES_VERSION,
@@ -192,7 +191,6 @@
 };
 
 static struct xtables_match limit6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "limit",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_mac.c
===================================================================
--- trunk/iptables/extensions/libxt_mac.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_mac.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -121,7 +121,6 @@
 }
 
 static struct xtables_match mac = { 
-	.next		= NULL,
 	.family		= AF_INET,
  	.name		= "mac",
 	.version	= IPTABLES_VERSION,
@@ -136,7 +135,6 @@
 };
 
 static struct xtables_match mac6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
  	.name		= "mac",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_mark.c
===================================================================
--- trunk/iptables/extensions/libxt_mark.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_mark.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -105,7 +105,6 @@
 }
 
 static struct xtables_match mark = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "mark",
 	.version	= IPTABLES_VERSION,
@@ -120,7 +119,6 @@
 };
 
 static struct xtables_match mark6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "mark",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_multiport.c
===================================================================
--- trunk/iptables/extensions/libxt_multiport.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_multiport.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -520,7 +520,6 @@
 }
 
 static struct xtables_match multiport = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "multiport",
 	.revision	= 0,
@@ -537,7 +536,6 @@
 };
 
 static struct xtables_match multiport6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "multiport",
 	.revision	= 0,
@@ -554,7 +552,6 @@
 };
 
 static struct xtables_match multiport_v1 = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "multiport",
 	.version	= IPTABLES_VERSION,
@@ -571,7 +568,6 @@
 };
 
 static struct xtables_match multiport6_v1 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "multiport",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_physdev.c
===================================================================
--- trunk/iptables/extensions/libxt_physdev.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_physdev.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -173,7 +173,6 @@
 }
 
 static struct xtables_match physdev = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "physdev",
 	.version	= IPTABLES_VERSION,
@@ -189,7 +188,6 @@
 };
 
 static struct xtables_match physdev6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "physdev",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_pkttype.c
===================================================================
--- trunk/iptables/extensions/libxt_pkttype.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_pkttype.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -148,7 +148,6 @@
 }
 
 static struct xtables_match pkttype = {
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "pkttype",
 	.version	= IPTABLES_VERSION,
@@ -163,7 +162,6 @@
 };
 
 static struct xtables_match pkttype6 = {
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "pkttype",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_quota.c
===================================================================
--- trunk/iptables/extensions/libxt_quota.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_quota.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -86,7 +86,6 @@
 }
 
 struct xtables_match quota = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "quota",
 	.version	= IPTABLES_VERSION,
@@ -101,7 +100,6 @@
 };
 
 struct xtables_match quota6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "quota",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_standard.c
===================================================================
--- trunk/iptables/extensions/libxt_standard.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_standard.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -49,7 +49,6 @@
 
 static
 struct xtables_target standard = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "standard",
 	.version	= IPTABLES_VERSION,
@@ -66,7 +65,6 @@
 
 static
 struct xtables_target standard6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "standard",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_tcp.c
===================================================================
--- trunk/iptables/extensions/libxt_tcp.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_tcp.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -395,7 +395,6 @@
 }
 
 static struct xtables_match tcp = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "tcp",
 	.version	= IPTABLES_VERSION,
@@ -411,7 +410,6 @@
 };
 
 static struct xtables_match tcp6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "tcp",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_tcpmss.c
===================================================================
--- trunk/iptables/extensions/libxt_tcpmss.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_tcpmss.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -133,7 +133,6 @@
 }
 
 static struct xtables_match tcpmss = {
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "tcpmss",
 	.version	= IPTABLES_VERSION,
@@ -148,7 +147,6 @@
 };
 
 static struct xtables_match tcpmss6 = {
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "tcpmss",
 	.version	= IPTABLES_VERSION,

Modified: trunk/iptables/extensions/libxt_udp.c
===================================================================
--- trunk/iptables/extensions/libxt_udp.c	2007-07-30 13:20:43 UTC (rev 6970)
+++ trunk/iptables/extensions/libxt_udp.c	2007-07-30 13:38:44 UTC (rev 6971)
@@ -209,7 +209,6 @@
 
 static
 struct xtables_match udp = { 
-	.next		= NULL,
 	.family		= AF_INET,
 	.name		= "udp",
 	.version	= IPTABLES_VERSION,
@@ -226,7 +225,6 @@
 
 static
 struct xtables_match udp6 = { 
-	.next		= NULL,
 	.family		= AF_INET6,
 	.name		= "udp",
 	.version	= IPTABLES_VERSION,




More information about the netfilter-cvslog mailing list