diff options
author | 2000-02-07 06:09:08 +0000 | |
---|---|---|
committer | 2000-02-07 06:09:08 +0000 | |
commit | fa86ee14bfa9f8021df2c54c766429f9ba47d645 (patch) | |
tree | 2deee474a5f18590f1b53ae6d842d5347183e5d2 /sys/netinet6/raw_ipv6.c | |
parent | make more check about mbuf len before rolling message for routing header. (diff) | |
download | wireguard-openbsd-fa86ee14bfa9f8021df2c54c766429f9ba47d645.tar.xz wireguard-openbsd-fa86ee14bfa9f8021df2c54c766429f9ba47d645.zip |
fix include file path related to ip6.
Diffstat (limited to 'sys/netinet6/raw_ipv6.c')
-rw-r--r-- | sys/netinet6/raw_ipv6.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet6/raw_ipv6.c b/sys/netinet6/raw_ipv6.c index 8c53adbd5cf..a2cae4bcbdb 100644 --- a/sys/netinet6/raw_ipv6.c +++ b/sys/netinet6/raw_ipv6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raw_ipv6.c,v 1.12 2000/01/05 17:30:52 itojun Exp $ */ +/* $OpenBSD: raw_ipv6.c,v 1.13 2000/02/07 06:09:10 itojun Exp $ */ /* %%% copyright-nrl-95 This software is Copyright 1995-1998 by Randall Atkinson, Ronald Lee, @@ -43,7 +43,7 @@ didn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>. * SUCH DAMAGE. * * @(#)raw_ip.c 8.7 (Berkeley) 5/15/95 - * $Id: raw_ipv6.c,v 1.12 2000/01/05 17:30:52 itojun Exp $ + * $Id: raw_ipv6.c,v 1.13 2000/02/07 06:09:10 itojun Exp $ */ #include <sys/param.h> @@ -67,9 +67,9 @@ didn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>. #include <netinet/in_pcb.h> #include <netinet6/in6_var.h> -#include <netinet6/ip6.h> +#include <netinet/ip6.h> #include <netinet6/ip6_var.h> -#include <netinet6/icmp6.h> +#include <netinet/icmp6.h> #undef IPSEC |