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 /usr.sbin/tftp-proxy | |
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 'usr.sbin/tftp-proxy')
-rw-r--r-- | usr.sbin/tftp-proxy/filter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/tftp-proxy/filter.c b/usr.sbin/tftp-proxy/filter.c index 4d4cf379d4c..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 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> |