diff options
author | 2015-11-23 15:53:35 +0000 | |
---|---|---|
committer | 2015-11-23 15:53:35 +0000 | |
commit | cfc485809b1d98c66f339206c44dbcb2f1c0b21f (patch) | |
tree | 44d796083db5fe32fda3a4160efca3beff927ae0 | |
parent | Remove more useless comments. This whole file may go eventually, as per (diff) | |
download | wireguard-openbsd-cfc485809b1d98c66f339206c44dbcb2f1c0b21f.tar.xz wireguard-openbsd-cfc485809b1d98c66f339206c44dbcb2f1c0b21f.zip |
There's no longer a need to include <net/hfsc.h> in <net/if_var.h>
-rw-r--r-- | sys/net/if_var.h | 5 | ||||
-rw-r--r-- | sys/net/pf_ioctl.c | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/sys/net/if_var.h b/sys/net/if_var.h index 4c17520ae41..30e21d757a0 100644 --- a/sys/net/if_var.h +++ b/sys/net/if_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_var.h,v 1.56 2015/11/21 01:08:50 dlg Exp $ */ +/* $OpenBSD: if_var.h,v 1.57 2015/11/23 15:53:35 mpi Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -40,9 +40,6 @@ #include <sys/mbuf.h> #include <sys/srp.h> #include <sys/refcnt.h> -#ifdef _KERNEL -#include <net/hfsc.h> -#endif /* * Structures defining a network interface, providing a packet diff --git a/sys/net/pf_ioctl.c b/sys/net/pf_ioctl.c index 7d8d74f2435..5db63705beb 100644 --- a/sys/net/pf_ioctl.c +++ b/sys/net/pf_ioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_ioctl.c,v 1.292 2015/11/20 03:35:23 dlg Exp $ */ +/* $OpenBSD: pf_ioctl.c,v 1.293 2015/11/23 15:53:35 mpi Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -59,6 +59,7 @@ #include <net/if_var.h> #include <net/if_types.h> #include <net/route.h> +#include <net/hfsc.h> #include <netinet/in.h> #include <netinet/ip.h> |