diff options
author | 2014-09-30 12:54:22 +0000 | |
---|---|---|
committer | 2014-09-30 12:54:22 +0000 | |
commit | 68b535e80358a74045c148b53f43e350b94795ae (patch) | |
tree | b7d41b3712b97bfe39d378b8b5eaa0c555058537 | |
parent | atoi to strtonum; from Fritjof Bornebusch; ok nicm@ (diff) | |
download | wireguard-openbsd-68b535e80358a74045c148b53f43e350b94795ae.tar.xz wireguard-openbsd-68b535e80358a74045c148b53f43e350b94795ae.zip |
add back the sys/sysctl.h include removed in rev 1.60
fixes the kernel build when PIM is defined
-rw-r--r-- | sys/netinet/ip_mroute.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/ip_mroute.c b/sys/netinet/ip_mroute.c index 5be0f71af53..e59bb3eed5b 100644 --- a/sys/netinet/ip_mroute.c +++ b/sys/netinet/ip_mroute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_mroute.c,v 1.70 2014/08/14 09:01:47 mpi Exp $ */ +/* $OpenBSD: ip_mroute.c,v 1.71 2014/09/30 12:54:22 jsg Exp $ */ /* $NetBSD: ip_mroute.c,v 1.85 2004/04/26 01:31:57 matt Exp $ */ /* @@ -72,6 +72,7 @@ #include <sys/kernel.h> #include <sys/ioctl.h> #include <sys/syslog.h> +#include <sys/sysctl.h> #include <sys/timeout.h> #include <net/if.h> |