diff options
author | 2016-07-01 18:18:57 +0000 | |
---|---|---|
committer | 2016-07-01 18:18:57 +0000 | |
commit | b9169547ddbb2a3ae1920f8c66324dd8d3ff27d2 (patch) | |
tree | b18068973b4a197ee10523641ccbbb3f7335caa4 | |
parent | flag the local socket listener as local. (diff) | |
download | wireguard-openbsd-b9169547ddbb2a3ae1920f8c66324dd8d3ff27d2.tar.xz wireguard-openbsd-b9169547ddbb2a3ae1920f8c66324dd8d3ff27d2.zip |
Unbreak getsockopt(IPV6_MINHOPCOUNT)
ok bluhm@
-rw-r--r-- | sys/netinet6/ip6_output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index 3dbf220bf48..05931bd5897 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_output.c,v 1.210 2016/06/27 16:33:48 jca Exp $ */ +/* $OpenBSD: ip6_output.c,v 1.211 2016/07/01 18:18:57 jca Exp $ */ /* $KAME: ip6_output.c,v 1.172 2001/03/25 09:55:56 itojun Exp $ */ /* @@ -1462,6 +1462,7 @@ do { \ case IPV6_RECVHOPOPTS: case IPV6_RECVDSTOPTS: case IPV6_UNICAST_HOPS: + case IPV6_MINHOPCOUNT: case IPV6_RECVPKTINFO: case IPV6_RECVHOPLIMIT: case IPV6_RECVRTHDR: |