summaryrefslogtreecommitdiffstats
path: root/net/ipv6/addrconf.c
diff options
context:
space:
mode:
authorDavid S. Miller2011-12-06 22:48:14 +0100
committerDavid S. Miller2011-12-06 22:48:14 +0100
commit8f0315190dec88bf035d50e4fd1db89859b414f6 (patch)
treeebc3d6669124188439da105da919e46ce8ea0619 /net/ipv6/addrconf.c
parentbnx2x: Fix compile errors if CONFIG_CNIC is not set (diff)
downloadkernel-qcow2-linux-8f0315190dec88bf035d50e4fd1db89859b414f6.tar.gz
kernel-qcow2-linux-8f0315190dec88bf035d50e4fd1db89859b414f6.tar.xz
kernel-qcow2-linux-8f0315190dec88bf035d50e4fd1db89859b414f6.zip
ipv6: Make third arg to anycast_dst_alloc() bool.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/addrconf.c')
-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 058cc222b3f1..94f3fd91a1a6 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -630,7 +630,7 @@ ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
goto out;
}
- rt = addrconf_dst_alloc(idev, addr, 0);
+ rt = addrconf_dst_alloc(idev, addr, false);
if (IS_ERR(rt)) {
err = PTR_ERR(rt);
goto out;