diff options
author | Michal Mazurek <akfaew@cvs.openbsd.org> | 2017-05-27 19:38:39 +0000 |
---|---|---|
committer | Michal Mazurek <akfaew@cvs.openbsd.org> | 2017-05-27 19:38:39 +0000 |
commit | 93bed53fee5b4b27dc2927f35aa011f6456c5a1d (patch) | |
tree | 5f22acd86aad2d5d6c4c797a9f0e2a5bf1d48616 | |
parent | 7d69a7b02e270d3bc4c92a557edfec4c06e1f02c (diff) |
Move includes.
This reduces the diff with usr.sbin/tcpdump/pfctl_osfp.c. The change
from tcpdump is newer, so change pfctl. No binary change.
OK deraadt@
-rw-r--r-- | sbin/pfctl/pfctl_osfp.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sbin/pfctl/pfctl_osfp.c b/sbin/pfctl/pfctl_osfp.c index 9d7df7adc00..e89a047ed3a 100644 --- a/sbin/pfctl/pfctl_osfp.c +++ b/sbin/pfctl/pfctl_osfp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_osfp.c,v 1.23 2015/12/10 17:27:00 mmcc Exp $ */ +/* $OpenBSD: pfctl_osfp.c,v 1.24 2017/05/27 19:38:38 akfaew Exp $ */ /* * Copyright (c) 2003 Mike Frantzen <frantzen@openbsd.org> @@ -21,11 +21,10 @@ #include <sys/socket.h> #include <netinet/in.h> -#include <net/if.h> -#include <net/pfvar.h> - #include <netinet/ip.h> #include <netinet/ip6.h> +#include <net/if.h> +#include <net/pfvar.h> #include <ctype.h> #include <err.h> |