diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2006-08-23 20:25:05 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 17:55:56 -0400 |
commit | 77d16f450ae0452d7d4b009f78debb1294fb435c (patch) | |
tree | 464c7c05b32a03068f47af064285a9bce876962d /net/ipv6/fib6_rules.c | |
parent | 4e96c2b4180aff4f080b77314712073c6ca430e7 (diff) |
[IPV6] ROUTE: Unify RT6_F_xxx and RT6_SELECT_F_xxx flags
Unify RT6_F_xxx and RT6_SELECT_F_xxx flags into
RT6_LOOKUP_F_xxx flags, and put them into ip6_route.h
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Acked-by: Ville Nuorvala <vnuorval@tcs.hut.fi
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/fib6_rules.c')
-rw-r--r-- | net/ipv6/fib6_rules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/fib6_rules.c b/net/ipv6/fib6_rules.c index 2c4fbc855e6c..7b4908cc52b3 100644 --- a/net/ipv6/fib6_rules.c +++ b/net/ipv6/fib6_rules.c | |||
@@ -117,7 +117,7 @@ static int fib6_rule_match(struct fib_rule *rule, struct flowi *fl, int flags) | |||
117 | if (!ipv6_prefix_equal(&fl->fl6_dst, &r->dst.addr, r->dst.plen)) | 117 | if (!ipv6_prefix_equal(&fl->fl6_dst, &r->dst.addr, r->dst.plen)) |
118 | return 0; | 118 | return 0; |
119 | 119 | ||
120 | if ((flags & RT6_F_HAS_SADDR) && | 120 | if ((flags & RT6_LOOKUP_F_HAS_SADDR) && |
121 | !ipv6_prefix_equal(&fl->fl6_src, &r->src.addr, r->src.plen)) | 121 | !ipv6_prefix_equal(&fl->fl6_src, &r->src.addr, r->src.plen)) |
122 | return 0; | 122 | return 0; |
123 | 123 | ||