summaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorzhuyj <zyjzyj2000@gmail.com>2015-01-14 17:23:59 +0800
committerDavid S. Miller <davem@davemloft.net>2015-01-14 16:35:49 -0500
commit9a6b4b392de4569e83ecfd6f382f3369f250b52f (patch)
tree145ad729c4b2a167581062dad0839c3b236ff8c4 /net/ipv6
parent3f4c1d87af2a0c8a599b95bfebbc6338de343aca (diff)
downloadop-kernel-dev-9a6b4b392de4569e83ecfd6f382f3369f250b52f.zip
op-kernel-dev-9a6b4b392de4569e83ecfd6f382f3369f250b52f.tar.gz
ipv6:icmp:remove unnecessary brackets
There are too many brackets. Maybe only one bracket is enough. Signed-off-by: Zhu Yanjun <Yanjun.Zhu@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/icmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
index d674152..a5e9519 100644
--- a/net/ipv6/icmp.c
+++ b/net/ipv6/icmp.c
@@ -427,7 +427,7 @@ static void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info)
* Dest addr check
*/
- if ((addr_type & IPV6_ADDR_MULTICAST || skb->pkt_type != PACKET_HOST)) {
+ if (addr_type & IPV6_ADDR_MULTICAST || skb->pkt_type != PACKET_HOST) {
if (type != ICMPV6_PKT_TOOBIG &&
!(type == ICMPV6_PARAMPROB &&
code == ICMPV6_UNK_OPTION &&
OpenPOWER on IntegriCloud