summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2018-07-10 09:35:28 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2018-07-10 09:35:28 +0000
commit5bb77b5bc11d052ef606313b5d91de0643f011b2 (patch)
tree3d6cfcf106f0f28e114d3057bad6b7f89a52432d /sbin
parent3e9f3108f7bff4f02e9ebc561873b492debbf380 (diff)
Include <sys/queue.h> instead of relying on kernel headers to include
it. ok markus@ as part of a larger diff
Diffstat (limited to 'sbin')
-rw-r--r--sbin/ipsecctl/pfkdump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/ipsecctl/pfkdump.c b/sbin/ipsecctl/pfkdump.c
index d4767fd6ba7..4343b3e4a9f 100644
--- a/sbin/ipsecctl/pfkdump.c
+++ b/sbin/ipsecctl/pfkdump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfkdump.c,v 1.46 2017/04/19 15:59:38 bluhm Exp $ */
+/* $OpenBSD: pfkdump.c,v 1.47 2018/07/10 09:35:27 mpi Exp $ */
/*
* Copyright (c) 2003 Markus Friedl. All rights reserved.
@@ -27,6 +27,7 @@
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/sysctl.h>
+#include <sys/queue.h>
#include <net/pfkeyv2.h>
#include <netinet/ip_ipsp.h>
#include <netdb.h>