diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-02-07 06:09:11 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-02-07 06:09:11 +0000 |
commit | 7f438dd015f361593db125e47df9be7d318a0004 (patch) | |
tree | 7f7879df742261d5203e94fe206c323380260690 /sys/netinet/udp_usrreq.c | |
parent | 4c56a47e2e8f387dc8a601f300b672b1619113f8 (diff) |
fix include file path related to ip6.
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r-- | sys/netinet/udp_usrreq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index 25f22489ba7..aa082a2499b 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.37 2000/01/07 16:34:10 angelos Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.38 2000/02/07 06:09:09 itojun Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -87,10 +87,10 @@ extern int check_ipsec_policy __P((struct inpcb *, u_int32_t)); #ifndef INET #include <netinet/in.h> #endif -#include <netinet6/ip6.h> +#include <netinet/ip6.h> #include <netinet6/in6_var.h> #include <netinet6/ip6_var.h> -#include <netinet6/icmp6.h> +#include <netinet/icmp6.h> #include <netinet6/ip6protosw.h> extern int ip6_defhlim; |