Mixing member accessors (non-named vs named) is not good. Remove stray NULL. Signed-off-by: Jan Engelhardt <jengelh@xxxxxx> --- extensions/libip6t_HL.c | 2 +- extensions/libipt_MASQUERADE.c | 2 +- extensions/libipt_realm.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) Index: iptables/extensions/libip6t_HL.c =================================================================== --- iptables.orig/extensions/libip6t_HL.c +++ iptables/extensions/libip6t_HL.c @@ -146,7 +146,7 @@ static const struct option opts[] = { }; static -struct ip6tables_target HL = { NULL, +struct ip6tables_target HL = { .name = "HL", .version = IPTABLES_VERSION, .size = IP6T_ALIGN(sizeof(struct ip6t_HL_info)), Index: iptables/extensions/libipt_MASQUERADE.c =================================================================== --- iptables.orig/extensions/libipt_MASQUERADE.c +++ iptables/extensions/libipt_MASQUERADE.c @@ -161,7 +161,7 @@ save(const void *ip, const struct xt_ent printf("--random "); } -static struct iptables_target masq = { NULL, +static struct iptables_target masq = { .name = "MASQUERADE", .version = IPTABLES_VERSION, .size = IPT_ALIGN(sizeof(struct ip_nat_multi_range)), Index: iptables/extensions/libipt_realm.c =================================================================== --- iptables.orig/extensions/libipt_realm.c +++ iptables/extensions/libipt_realm.c @@ -250,7 +250,7 @@ final_check(unsigned int flags) "realm match: You must specify `--realm'"); } -static struct iptables_match realm = { NULL, +static struct iptables_match realm = { .name = "realm", .version = IPTABLES_VERSION, .size = IPT_ALIGN(sizeof(struct ipt_realm_info)), - To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html