diff options
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r-- | net/ipv6/route.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 35c58b669ebd..9db1418993f2 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
@@ -3423,6 +3423,8 @@ static int rt6_fill_node(struct net *net, | |||
3423 | } | 3423 | } |
3424 | else if (rt->rt6i_flags & RTF_LOCAL) | 3424 | else if (rt->rt6i_flags & RTF_LOCAL) |
3425 | rtm->rtm_type = RTN_LOCAL; | 3425 | rtm->rtm_type = RTN_LOCAL; |
3426 | else if (rt->rt6i_flags & RTF_ANYCAST) | ||
3427 | rtm->rtm_type = RTN_ANYCAST; | ||
3426 | else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK)) | 3428 | else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK)) |
3427 | rtm->rtm_type = RTN_LOCAL; | 3429 | rtm->rtm_type = RTN_LOCAL; |
3428 | else | 3430 | else |