diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-06-18 02:00:21 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-06-18 02:00:21 +0000 |
commit | ddc4fc920bbbe0f7b0cacce65e3442813bc1a1d8 (patch) | |
tree | cda0970e6d3665f2e81451e3d8b12d203c5c2506 | |
parent | 6cb407c3a2abcea43e2211f3fb7e3d33dc4188a0 (diff) |
correct indentation for IPV6_PORTRANGE
-rw-r--r-- | sys/netinet6/ip6_output.c | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index 84525bf53e3..2003f3ed039 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1,5 +1,5 @@ -/* $OpenBSD: ip6_output.c,v 1.8 2000/06/03 13:43:45 itojun Exp $ */ -/* $KAME: ip6_output.c,v 1.110 2000/06/03 12:43:49 itojun Exp $ */ +/* $OpenBSD: ip6_output.c,v 1.9 2000/06/18 02:00:20 itojun Exp $ */ +/* $KAME: ip6_output.c,v 1.112 2000/06/18 01:50:39 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -1275,34 +1275,34 @@ ip6_ctloutput(op, so, level, optname, mp) &inp->inp_moptions6, m); break; - case IPV6_PORTRANGE: - optval = *mtod(m, int *); + case IPV6_PORTRANGE: + optval = *mtod(m, int *); # define in6p inp # define in6p_flags inp_flags - switch (optval) { - case IPV6_PORTRANGE_DEFAULT: - in6p->in6p_flags &= ~(IN6P_LOWPORT); - in6p->in6p_flags &= ~(IN6P_HIGHPORT); - break; + switch (optval) { + case IPV6_PORTRANGE_DEFAULT: + in6p->in6p_flags &= ~(IN6P_LOWPORT); + in6p->in6p_flags &= ~(IN6P_HIGHPORT); + break; - case IPV6_PORTRANGE_HIGH: - in6p->in6p_flags &= ~(IN6P_LOWPORT); - in6p->in6p_flags |= IN6P_HIGHPORT; - break; + case IPV6_PORTRANGE_HIGH: + in6p->in6p_flags &= ~(IN6P_LOWPORT); + in6p->in6p_flags |= IN6P_HIGHPORT; + break; - case IPV6_PORTRANGE_LOW: - in6p->in6p_flags &= ~(IN6P_HIGHPORT); - in6p->in6p_flags |= IN6P_LOWPORT; - break; + case IPV6_PORTRANGE_LOW: + in6p->in6p_flags &= ~(IN6P_HIGHPORT); + in6p->in6p_flags |= IN6P_LOWPORT; + break; - default: - error = EINVAL; - break; - } + default: + error = EINVAL; + break; + } # undef in6p # undef in6p_flags - break; + break; #ifdef IPSEC case IPV6_IPSEC_POLICY: |