summaryrefslogtreecommitdiffstats
path: root/usr.sbin/tftp-proxy
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2015-01-21 21:50:32 +0000
committerderaadt <deraadt@openbsd.org>2015-01-21 21:50:32 +0000
commit68928c43a99c1507757b46fa476c5482a4d9e547 (patch)
tree5bf56e1982f7ba71f533dfad5168b595aa24f8c8 /usr.sbin/tftp-proxy
parentRemove the useless variable ifa in rt_getifa(). (diff)
downloadwireguard-openbsd-68928c43a99c1507757b46fa476c5482a4d9e547.tar.xz
wireguard-openbsd-68928c43a99c1507757b46fa476c5482a4d9e547.zip
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 'usr.sbin/tftp-proxy')
-rw-r--r--usr.sbin/tftp-proxy/filter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/tftp-proxy/filter.c b/usr.sbin/tftp-proxy/filter.c
index f4dff05c900..2e63f41e4ed 100644
--- a/usr.sbin/tftp-proxy/filter.c
+++ b/usr.sbin/tftp-proxy/filter.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: filter.c,v 1.1.1.1 2012/07/11 11:43:27 dlg Exp $ */
+/* $OpenBSD: filter.c,v 1.2 2015/01/21 21:50:33 deraadt Exp $ */
/*
* Copyright (c) 2004, 2005 Camiel Dobbelaar, <cd@sentia.nl>
@@ -22,11 +22,11 @@
#include <sys/types.h>
#include <sys/socket.h>
-#include <net/if.h>
-#include <net/pfvar.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
+#include <net/if.h>
+#include <net/pfvar.h>
#include <err.h>
#include <errno.h>