diff options
author | 2001-08-05 11:10:34 +0000 | |
---|---|---|
committer | 2001-08-05 11:10:34 +0000 | |
commit | f0ca06e178f59b747193ffb7e0718a8f8373b635 (patch) | |
tree | 88d47d755a99a43ddb1542e9f3fba34322531817 | |
parent | Actually, move the check inside the switch. (diff) | |
download | wireguard-openbsd-f0ca06e178f59b747193ffb7e0718a8f8373b635.tar.xz wireguard-openbsd-f0ca06e178f59b747193ffb7e0718a8f8373b635.zip |
re-order headers as they should be
-rw-r--r-- | sbin/ipsecadm/ipsecadm.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sbin/ipsecadm/ipsecadm.c b/sbin/ipsecadm/ipsecadm.c index d54da65fdbb..d28d3a8a614 100644 --- a/sbin/ipsecadm/ipsecadm.c +++ b/sbin/ipsecadm/ipsecadm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsecadm.c,v 1.61 2001/07/06 05:01:07 angelos Exp $ */ +/* $OpenBSD: ipsecadm.c,v 1.62 2001/08/05 11:10:34 deraadt Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -41,6 +41,8 @@ #include <sys/ioctl.h> #include <sys/mbuf.h> #include <sys/sysctl.h> +#include <sys/uio.h> +#include <sys/stat.h> #include <net/if.h> #include <net/route.h> @@ -49,9 +51,12 @@ #include <netns/ns.h> #include <netiso/iso.h> #include <netccitt/x25.h> +#include <net/pfkeyv2.h> +#include <netinet/ip_ipsp.h> +#include <netinet/in.h> #include <arpa/inet.h> -#include <netdb.h> +#include <netdb.h> #include <errno.h> #include <unistd.h> #include <stdio.h> @@ -59,11 +64,6 @@ #include <stdlib.h> #include <string.h> #include <paths.h> -#include <sys/uio.h> -#include <sys/stat.h> -#include <net/pfkeyv2.h> -#include <netinet/ip_ipsp.h> -#include <netinet/in.h> #define KEYSIZE_LIMIT 1024 |