Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

xfrm4: Remove duplicate semicolon

3328715e6c1fc (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>

authored by

Christoph Paasch and committed by
Steffen Klassert
1759389e 1990e4f8

+1 -1
+1 -1
net/ipv4/xfrm4_protocol.c
··· 124 124 125 125 for_each_protocol_rcu(ah4_handlers, handler) 126 126 if ((ret = handler->handler(skb)) != -EINVAL) 127 - return ret;; 127 + return ret; 128 128 129 129 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0); 130 130