diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-21 01:40:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-21 01:40:26 +0000 |
commit | 1534bb5e4074929a07f1fcc1195962967d5508ce (patch) | |
tree | 81d07eb491e2cc01134d574bdb6da9a6ffa56bf8 /sbin/ipsecctl | |
parent | 0e4fd55dc208bc4388e93e9803a984f9f4e11d12 (diff) |
Userland programs should include <errno.h> not <sys/errno.h>
OK deraadt@
Diffstat (limited to 'sbin/ipsecctl')
-rw-r--r-- | sbin/ipsecctl/pfkdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipsecctl/pfkdump.c b/sbin/ipsecctl/pfkdump.c index dd3930985db..ff2cfc26d8d 100644 --- a/sbin/ipsecctl/pfkdump.c +++ b/sbin/ipsecctl/pfkdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfkdump.c,v 1.9 2005/12/12 23:24:10 hshoexer Exp $ */ +/* $OpenBSD: pfkdump.c,v 1.10 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> #include "ipsecctl.h" #include "pfkey.h" |