aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorFrançois-Xavier Le Bail <fx.lebail@yahoo.com>2013-12-02 11:28:49 +0100
committerDavid S. Miller <davem@davemloft.net>2013-12-02 17:13:25 -0500
commit57ec0afe293834f8ca9499214ed74748d89eaa44 (patch)
treec9f7740d082c34f90a973a8311282b2bc808fe2b /net/ipv6
parentnet: fec_main: dma_map() only the length of the skb (diff)
downloadlinux-dev-57ec0afe293834f8ca9499214ed74748d89eaa44.tar.xz
linux-dev-57ec0afe293834f8ca9499214ed74748d89eaa44.zip
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')
-rw-r--r--net/ipv6/addrconf.c2
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)) {