diff options
Diffstat (limited to 'extensions/libxt_owner.c')
-rw-r--r-- | extensions/libxt_owner.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/libxt_owner.c b/extensions/libxt_owner.c index 7cad35c3..298075e9 100644 --- a/extensions/libxt_owner.c +++ b/extensions/libxt_owner.c @@ -532,7 +532,7 @@ static struct xtables_match owner_mt_reg_v0 = { .version = XTABLES_VERSION, .name = "owner", .revision = 0, - .family = AF_INET, + .family = NFPROTO_IPV4, .size = XT_ALIGN(sizeof(struct ipt_owner_info)), .userspacesize = XT_ALIGN(sizeof(struct ipt_owner_info)), .help = owner_mt_help_v0, @@ -547,7 +547,7 @@ static struct xtables_match owner_mt6_reg_v0 = { .version = XTABLES_VERSION, .name = "owner", .revision = 0, - .family = AF_INET6, + .family = NFPROTO_IPV6, .size = XT_ALIGN(sizeof(struct ip6t_owner_info)), .userspacesize = XT_ALIGN(sizeof(struct ip6t_owner_info)), .help = owner_mt6_help_v0, @@ -562,7 +562,7 @@ static struct xtables_match owner_mt_reg = { .version = XTABLES_VERSION, .name = "owner", .revision = 1, - .family = AF_INET, + .family = NFPROTO_IPV4, .size = XT_ALIGN(sizeof(struct xt_owner_match_info)), .userspacesize = XT_ALIGN(sizeof(struct xt_owner_match_info)), .help = owner_mt_help, @@ -577,7 +577,7 @@ static struct xtables_match owner_mt6_reg = { .version = XTABLES_VERSION, .name = "owner", .revision = 1, - .family = AF_INET6, + .family = NFPROTO_IPV6, .size = XT_ALIGN(sizeof(struct xt_owner_match_info)), .userspacesize = XT_ALIGN(sizeof(struct xt_owner_match_info)), .help = owner_mt_help, |