summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-01-21 21:50:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-01-21 21:50:34 +0000
commit03e064c04d932d7183d51c253f9ed4f9a0f09aff (patch)
tree0abaaec6ce9a8553d008c5c2318f36faaceb0461 /libexec
parent845bafcb5deb45c57feac32817a690f65de50c66 (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.c4
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>