summaryrefslogtreecommitdiffstats
path: root/iptables/xtables.c
diff options
context:
space:
mode:
Diffstat (limited to 'iptables/xtables.c')
-rw-r--r--iptables/xtables.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/iptables/xtables.c b/iptables/xtables.c
index c3110558..c0a6347a 100644
--- a/iptables/xtables.c
+++ b/iptables/xtables.c
@@ -1247,7 +1247,10 @@ int do_commandx(struct nft_handle *h, int argc, char *argv[], char **table)
break;
}
- h->family = family;
+ /* Set only if required, needed by xtables-restore */
+ if (h->family == AF_UNSPEC)
+ h->family = family;
+
h->ops = nft_family_ops_lookup(family);
if (h->ops == NULL)
xtables_error(PARAMETER_PROBLEM, "Unknown family");