summaryrefslogtreecommitdiff
path: root/sbin/ipsecadm
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2005-12-21 01:40:26 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2005-12-21 01:40:26 +0000
commit1534bb5e4074929a07f1fcc1195962967d5508ce (patch)
tree81d07eb491e2cc01134d574bdb6da9a6ffa56bf8 /sbin/ipsecadm
parent0e4fd55dc208bc4388e93e9803a984f9f4e11d12 (diff)
Userland programs should include <errno.h> not <sys/errno.h>
OK deraadt@
Diffstat (limited to 'sbin/ipsecadm')
-rw-r--r--sbin/ipsecadm/pfkdump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipsecadm/pfkdump.c b/sbin/ipsecadm/pfkdump.c
index f95c0d3022a..8bda12f94e1 100644
--- a/sbin/ipsecadm/pfkdump.c
+++ b/sbin/ipsecadm/pfkdump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfkdump.c,v 1.17 2005/09/27 11:53:42 markus Exp $ */
+/* $OpenBSD: pfkdump.c,v 1.18 2005/12/21 01:40:23 millert Exp $ */
/*
* Copyright (c) 2003 Markus Friedl. All rights reserved.
@@ -25,7 +25,6 @@
*/
#include <sys/param.h>
#include <sys/socket.h>
-#include <sys/errno.h>
#include <sys/time.h>
#include <sys/sysctl.h>
#include <net/pfkeyv2.h>
@@ -36,6 +35,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <err.h>
+#include <errno.h>
#define PFKEY2_CHUNK sizeof(u_int64_t)