diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2009-06-05 14:55:22 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2009-06-05 14:55:22 +0000 |
commit | bcf11e8d0048006ba97cb460a134cc23290428b2 (patch) | |
tree | 476e08b4812ed877bdf927598a5c7deae99fdcdf /sys/netinet/ip_mroute.c | |
parent | 88a9a9a61ce829ebdcc3fdf320c3c6270175566f (diff) | |
download | src-bcf11e8d0048006ba97cb460a134cc23290428b2.tar.gz src-bcf11e8d0048006ba97cb460a134cc23290428b2.zip |
Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERIC
and used in a large number of files, but also because an increasing number
of incorrect uses of MAC calls were sneaking in due to copy-and-paste of
MAC-aware code without the associated opt_mac.h include.
Discussed with: pjd
Notes
Notes:
svn path=/head/; revision=193511
Diffstat (limited to 'sys/netinet/ip_mroute.c')
-rw-r--r-- | sys/netinet/ip_mroute.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/netinet/ip_mroute.c b/sys/netinet/ip_mroute.c index fdea1180421d..65dc944cf35f 100644 --- a/sys/netinet/ip_mroute.c +++ b/sys/netinet/ip_mroute.c @@ -70,7 +70,6 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" -#include "opt_mac.h" #include "opt_mrouting.h" #define _PIM_VT 1 |