Skip to content

Commit

Permalink
xfrm4: Remove duplicate semicolon
Browse files Browse the repository at this point in the history
3328715 (xfrm4: Add IPsec protocol multiplexer) adds a
duplicate semicolon after the return-statement.

Although it has no negative impact, the second semicolon should be
removed.

Cc: Steffen Klassert <steffen.klassert@secunet.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Christoph Paasch <christoph.paasch@uclouvain.be>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
  • Loading branch information
Christoph Paasch authored and Steffen Klassert committed Jun 30, 2014
1 parent 1990e4f commit 1759389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/xfrm4_protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static int xfrm4_ah_rcv(struct sk_buff *skb)

for_each_protocol_rcu(ah4_handlers, handler)
if ((ret = handler->handler(skb)) != -EINVAL)
return ret;;
return ret;

icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);

Expand Down

0 comments on commit 1759389

Please sign in to comment.