diff options
| author | Jan Engelhardt <jengelh@medozas.de> | 2008-10-08 11:35:01 +0200 |
|---|---|---|
| committer | Patrick McHardy <kaber@trash.net> | 2008-10-08 11:35:01 +0200 |
| commit | ee999d8b9573df1b547aacdc6d79f86eb79c25cd (patch) | |
| tree | 83585a40918ad1ebad17f4a0cfbf5486c02c64d7 /net/netfilter/xt_u32.c | |
| parent | netfilter: Introduce NFPROTO_* constants (diff) | |
| download | linux-ee999d8b9573df1b547aacdc6d79f86eb79c25cd.tar.gz linux-ee999d8b9573df1b547aacdc6d79f86eb79c25cd.zip | |
netfilter: x_tables: use NFPROTO_* in extensions
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/netfilter/xt_u32.c')
| -rw-r--r-- | net/netfilter/xt_u32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/xt_u32.c b/net/netfilter/xt_u32.c index 627e0f336d54..ed9f83406112 100644 --- a/net/netfilter/xt_u32.c +++ b/net/netfilter/xt_u32.c @@ -102,14 +102,14 @@ u32_mt(const struct sk_buff *skb, const struct net_device *in, static struct xt_match u32_mt_reg[] __read_mostly = { { .name = "u32", - .family = AF_INET, + .family = NFPROTO_IPV4, .match = u32_mt, .matchsize = sizeof(struct xt_u32), .me = THIS_MODULE, }, { .name = "u32", - .family = AF_INET6, + .family = NFPROTO_IPV6, .match = u32_mt, .matchsize = sizeof(struct xt_u32), .me = THIS_MODULE, |
