diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-02-18 20:54:49 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-02-18 20:54:49 +0000 |
commit | 5e03c0a7c63fd29d5b772a94c460afe2373df4c8 (patch) | |
tree | 376cd2ec7944a86e48b576c4e81ae443445387d3 /sys/netinet6/icmp6.c | |
parent | 6eb28d4f0e948bfaf070637a62ea3f82521cc423 (diff) |
Move goto lables to the beginning of the line. Having them indented like
the rest of the switch cases is a good camouflage.
Diffstat (limited to 'sys/netinet6/icmp6.c')
-rw-r--r-- | sys/netinet6/icmp6.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet6/icmp6.c b/sys/netinet6/icmp6.c index 2f22c8198a0..756d8b36baf 100644 --- a/sys/netinet6/icmp6.c +++ b/sys/netinet6/icmp6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: icmp6.c,v 1.102 2008/10/02 14:11:06 jsing Exp $ */ +/* $OpenBSD: icmp6.c,v 1.103 2009/02/18 20:54:48 claudio Exp $ */ /* $KAME: icmp6.c,v 1.217 2001/06/20 15:03:29 jinmei Exp $ */ /* @@ -863,18 +863,18 @@ icmp6_input(struct mbuf **mp, int *offp, int proto) /* ICMPv6 informational: MUST not deliver */ break; } - deliver: +deliver: if (icmp6_notify_error(m, off, icmp6len, code)) { /* In this case, m should've been freed. */ return (IPPROTO_DONE); } break; - badcode: +badcode: icmp6stat.icp6s_badcode++; break; - badlen: +badlen: icmp6stat.icp6s_badlen++; break; } |