diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-21 21:50:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-21 21:50:34 +0000 |
commit | 03e064c04d932d7183d51c253f9ed4f9a0f09aff (patch) | |
tree | 0abaaec6ce9a8553d008c5c2318f36faaceb0461 /libexec | |
parent | 845bafcb5deb45c57feac32817a690f65de50c66 (diff) |
Include <netinet/in.h> before <net/pfvar.h>. In a future change when
ports is ready, <net/pfvar.h> will stop including a pile of balony.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/spamlogd/spamlogd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamlogd/spamlogd.c b/libexec/spamlogd/spamlogd.c index 18ce44a1e94..a05e7a53230 100644 --- a/libexec/spamlogd/spamlogd.c +++ b/libexec/spamlogd/spamlogd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamlogd.c,v 1.24 2015/01/16 06:39:50 deraadt Exp $ */ +/* $OpenBSD: spamlogd.c,v 1.25 2015/01/21 21:50:33 deraadt Exp $ */ /* * Copyright (c) 2006 Henning Brauer <henning@openbsd.org> @@ -29,13 +29,13 @@ #include <sys/signal.h> #include <net/if.h> -#include <net/if_pflog.h> #include <netinet/in.h> #include <netinet/ip.h> #include <arpa/inet.h> #include <net/pfvar.h> +#include <net/if_pflog.h> #include <db.h> #include <err.h> |