diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2006-03-20 17:01:43 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-20 17:01:43 -0800 |
commit | bb133964e036c4aaf773244468d589c024e7b399 (patch) | |
tree | 89ea37ebe290855fab314358f8ad32223e569fba /net/ipv6/route.c | |
parent | 1ddef044ed9dd6c7c23562d1140522e28de888a5 (diff) | |
download | linux-3.10-bb133964e036c4aaf773244468d589c024e7b399.tar.gz linux-3.10-bb133964e036c4aaf773244468d589c024e7b399.tar.bz2 linux-3.10-bb133964e036c4aaf773244468d589c024e7b399.zip |
[IPV6]: ROUTE: Try finding the next best route.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r-- | net/ipv6/route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 1a314bc7786..d8f3637952a 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -396,7 +396,7 @@ static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort, struct in6_addr *d } #define BACKTRACK() \ -if (rt == &ip6_null_entry && strict) { \ +if (rt == &ip6_null_entry) { \ while ((fn = fn->parent) != NULL) { \ if (fn->fn_flags & RTN_ROOT) { \ goto out; \ |