diff options
author | 2018-09-14 07:25:02 +0000 | |
---|---|---|
committer | 2018-09-14 07:25:02 +0000 | |
commit | 518a1a65e9991b73a184f96662b7f08e5778ac04 (patch) | |
tree | 4a2c97eb7e4a5d3e99cde7c24a5b8fc560272501 | |
parent | second try, deals properly with missing and private-only keys: (diff) | |
download | wireguard-openbsd-518a1a65e9991b73a184f96662b7f08e5778ac04.tar.xz wireguard-openbsd-518a1a65e9991b73a184f96662b7f08e5778ac04.zip |
unbreak userland uses of in_pcb.h by including sys/refcnt.h
ok visa@
-rw-r--r-- | sys/netinet/in_pcb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index a26b8a9e79e..984adb47a83 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in_pcb.h,v 1.111 2018/09/13 19:53:58 bluhm Exp $ */ +/* $OpenBSD: in_pcb.h,v 1.112 2018/09/14 07:25:02 jsg Exp $ */ /* $NetBSD: in_pcb.h,v 1.14 1996/02/13 23:42:00 christos Exp $ */ /* @@ -65,6 +65,7 @@ #define _NETINET_IN_PCB_H_ #include <sys/queue.h> +#include <sys/refcnt.h> #include <netinet/ip6.h> #include <netinet6/ip6_var.h> #include <netinet/icmp6.h> |