Skip to content

Commit

Permalink
ipv6: fix third arg of anycast_dst_alloc(), must be bool.
Browse files Browse the repository at this point in the history
Signed-off-by: Francois-Xavier Le Bail <fx.lebail@yahoo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
François-Xavier Le Bail authored and David S. Miller committed Dec 2, 2013
1 parent 2488a54 commit 57ec0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv6/addrconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 57ec0af

Please sign in to comment.