[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1405060451-12633-1-git-send-email-roy.qing.li@gmail.com>
Date: Fri, 11 Jul 2014 14:34:11 +0800
From: roy.qing.li@...il.com
To: netdev@...r.kernel.org
Subject: [PATCH net-next] ipv6: fix the debug information in icmpv6_route_lookup
From: Li RongQing <roy.qing.li@...il.com>
it should be "anycast destination", not "anycast source"
Signed-off-by: Li RongQing <roy.qing.li@...il.com>
---
net/ipv6/icmp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
index f6c84a6..481fd5a 100644
--- a/net/ipv6/icmp.c
+++ b/net/ipv6/icmp.c
@@ -334,7 +334,7 @@ static struct dst_entry *icmpv6_route_lookup(struct net *net,
* anycast.
*/
if (((struct rt6_info *)dst)->rt6i_flags & RTF_ANYCAST) {
- LIMIT_NETDEBUG(KERN_DEBUG "icmp6_send: acast source\n");
+ LIMIT_NETDEBUG(KERN_DEBUG "icmp6_send: acast destination\n");
dst_release(dst);
return ERR_PTR(-EINVAL);
}
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists