diff options
author | 2015-11-24 13:37:16 +0000 | |
---|---|---|
committer | 2015-11-24 13:37:16 +0000 | |
commit | c8d41900430392fa0adaa08c071cbe303832752f (patch) | |
tree | 4f89fb959b1facf367123863d09a3e93d2781157 /sys/net/pf_lb.c | |
parent | The only network driver needing <net/if_types.h> is upl(4) for IFT_OTHER. (diff) | |
download | wireguard-openbsd-c8d41900430392fa0adaa08c071cbe303832752f.tar.xz wireguard-openbsd-c8d41900430392fa0adaa08c071cbe303832752f.zip |
No need for <net/if_types.h>
As a bonus this removes a "#if NCARP > 0", say yeah!
Diffstat (limited to 'sys/net/pf_lb.c')
-rw-r--r-- | sys/net/pf_lb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/pf_lb.c b/sys/net/pf_lb.c index 9f5b5b6a436..9a449005157 100644 --- a/sys/net/pf_lb.c +++ b/sys/net/pf_lb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_lb.c,v 1.51 2015/10/15 19:48:44 bluhm Exp $ */ +/* $OpenBSD: pf_lb.c,v 1.52 2015/11/24 13:37:16 mpi Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -56,7 +56,6 @@ #include <crypto/siphash.h> #include <net/if.h> -#include <net/if_types.h> #include <net/bpf.h> #include <net/route.h> |