summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2000-01-06 02:52:52 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2000-01-06 02:52:52 +0000
commit41e974cacd6fef900734021763695db9c3acb84c (patch)
tree133003251f1f687ac77056ad85b2399b72330a66
parent689bc91cb3e906a49098d2a4c78ee6cfd5d99511 (diff)
add missing net.inet6.ip6.rr_prune case.
-rw-r--r--sys/netinet6/ip6_input.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c
index ccef263da09..be52f650ed8 100644
--- a/sys/netinet6/ip6_input.c
+++ b/sys/netinet6/ip6_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip6_input.c,v 1.5 1999/12/30 17:28:20 itojun Exp $ */
+/* $OpenBSD: ip6_input.c,v 1.6 2000/01/06 02:52:51 itojun Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -1185,6 +1185,8 @@ ip6_sysctl(name, namelen, oldp, oldlenp, newp, newlen)
case IPV6CTL_USE_DEPRECATED:
return sysctl_int(oldp, oldlenp, newp, newlen,
&ip6_use_deprecated);
+ case IPV6CTL_RR_PRUNE:
+ return sysctl_int(oldp, oldlenp, newp, newlen, &ip6_rr_prune);
default:
return EOPNOTSUPP;
}