diff mbox

ipv6: fix third arg of anycast_dst_alloc(), must be bool.

Message ID 1385980129-16471-1-git-send-email-fx.lebail@yahoo.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

FX Le Bail Dec. 2, 2013, 10:28 a.m. UTC
Signed-off-by: Francois-Xavier Le Bail <fx.lebail@yahoo.com>
---
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

David Miller Dec. 2, 2013, 10:13 p.m. UTC | #1
From: Francois-Xavier Le Bail <fx.lebail@yahoo.com>
Date: Mon,  2 Dec 2013 11:28:49 +0100

> Signed-off-by: Francois-Xavier Le Bail <fx.lebail@yahoo.com>

Applied, thank you.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index 12c97d8..d5fa5b8 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)) {