diff options
author | François-Xavier Le Bail <fx.lebail@yahoo.com> | 2013-12-02 11:28:49 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-02 17:13:25 -0500 |
commit | 57ec0afe293834f8ca9499214ed74748d89eaa44 (patch) | |
tree | c9f7740d082c34f90a973a8311282b2bc808fe2b /net/ipv6/addrconf.c | |
parent | 2488a54e485bc108ab136e8e3cb95b99e97f68b5 (diff) | |
download | linux-57ec0afe293834f8ca9499214ed74748d89eaa44.tar.bz2 |
ipv6: fix third arg of anycast_dst_alloc(), must be bool.
Signed-off-by: Francois-Xavier Le Bail <fx.lebail@yahoo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/addrconf.c')
-rw-r--r-- | net/ipv6/addrconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 12c97d8aa6bb..d5fa5b8c443e 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -2613,7 +2613,7 @@ static void init_loopback(struct net_device *dev) if (sp_ifa->rt) continue; - sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0); + sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, false); /* Failure cases are ignored */ if (!IS_ERR(sp_rt)) { |