summaryrefslogtreecommitdiff
path: root/net/ipv6/ip6_tunnel.c
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2012-05-18 08:14:11 +0200
committerDavid S. Miller <davem@davemloft.net>2012-05-18 02:24:13 -0400
commit92113bfde2f0982daa5a372d67b62f3d55bbc88a (patch)
treeb5170e0f77f259c231cd105d7035203f1fa0bc1f /net/ipv6/ip6_tunnel.c
parentcbc264cacd08e51fd4a64b5d5b1ba48f523990d1 (diff)
downloadlinux-3.10-92113bfde2f0982daa5a372d67b62f3d55bbc88a.tar.gz
linux-3.10-92113bfde2f0982daa5a372d67b62f3d55bbc88a.tar.bz2
linux-3.10-92113bfde2f0982daa5a372d67b62f3d55bbc88a.zip
ipv6: bool conversions phase1
ipv6_opt_accepted() returns a bool, and can use const pointers ipv6_addr_equal(), ipv6_addr_any(), ipv6_addr_loopback(), ipv6_addr_orchid() return a bool. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_tunnel.c')
-rw-r--r--net/ipv6/ip6_tunnel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c
index e65c56009bb..c9015fad8d6 100644
--- a/net/ipv6/ip6_tunnel.c
+++ b/net/ipv6/ip6_tunnel.c
@@ -818,7 +818,7 @@ static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
* 0 else
**/
-static inline int
+static inline bool
ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
{
return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);