diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2024-02-11 01:27:46 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2024-02-11 01:27:46 +0000 |
commit | e9dcf2a7811bd4e6a6bd667991e5d0e2483c6abc (patch) | |
tree | ffa19e6133ff9aaba1349309b2d281c59723dc6c /sys/netinet6 | |
parent | 0dcac173069fefd40a93dd458006d09c459353d1 (diff) |
Remove include netinet6/ip6_var.h from netinet/in_pcb.h.
OK mvs@
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/in6_pcb.c | 3 | ||||
-rw-r--r-- | sys/netinet6/ip6_divert.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/netinet6/in6_pcb.c b/sys/netinet6/in6_pcb.c index ab7acb7d766..caa902a11f8 100644 --- a/sys/netinet6/in6_pcb.c +++ b/sys/netinet6/in6_pcb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6_pcb.c,v 1.136 2024/02/09 14:02:12 bluhm Exp $ */ +/* $OpenBSD: in6_pcb.c,v 1.137 2024/02/11 01:27:45 bluhm Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -116,6 +116,7 @@ #include <netinet/in.h> #include <netinet/ip.h> #include <netinet/ip_var.h> +#include <netinet6/ip6_var.h> #include <netinet/in_pcb.h> #include <netinet6/in6_var.h> diff --git a/sys/netinet6/ip6_divert.c b/sys/netinet6/ip6_divert.c index 551df0e5012..4b75c3c2adf 100644 --- a/sys/netinet6/ip6_divert.c +++ b/sys/netinet6/ip6_divert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_divert.c,v 1.92 2024/02/03 22:50:09 mvs Exp $ */ +/* $OpenBSD: ip6_divert.c,v 1.93 2024/02/11 01:27:45 bluhm Exp $ */ /* * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org> @@ -35,6 +35,7 @@ #include <netinet/in_pcb.h> #include <netinet/ip_divert.h> #include <netinet/ip6.h> +#include <netinet6/ip6_var.h> #include <netinet6/in6_var.h> #include <netinet6/ip6_divert.h> #include <netinet/tcp.h> |