summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoritojun <itojun@openbsd.org>2002-11-09 03:12:01 +0000
committeritojun <itojun@openbsd.org>2002-11-09 03:12:01 +0000
commitacabe2d0f4129b2c8f91b33430c3a1ecb7d652d0 (patch)
tree78022bd8ee0f50f809a06636be3a0ed200898717
parentSEE ALSO reordering. (diff)
downloadwireguard-openbsd-acabe2d0f4129b2c8f91b33430c3a1ecb7d652d0.tar.xz
wireguard-openbsd-acabe2d0f4129b2c8f91b33430c3a1ecb7d652d0.zip
need icmp6.h for MULTICAST_PMTUD case. sync w/kame
-rw-r--r--sys/netinet6/ip6_mroute.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/netinet6/ip6_mroute.c b/sys/netinet6/ip6_mroute.c
index bb928b0358b..228b3334fb5 100644
--- a/sys/netinet6/ip6_mroute.c
+++ b/sys/netinet6/ip6_mroute.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip6_mroute.c,v 1.29 2002/09/11 03:15:36 itojun Exp $ */
+/* $OpenBSD: ip6_mroute.c,v 1.30 2002/11/09 03:12:01 itojun Exp $ */
/* $KAME: ip6_mroute.c,v 1.45 2001/03/25 08:38:51 itojun Exp $ */
/*
@@ -71,6 +71,9 @@
#include <netinet/in.h>
#include <netinet/in_var.h>
+#ifdef MULTICAST_PMTUD
+#include <netinet/icmp6.h>
+#endif
#include <netinet/ip6.h>
#include <netinet6/ip6_var.h>