aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_exec.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2006-10-22 11:52:19 +0000
committerRobert Watson <rwatson@FreeBSD.org>2006-10-22 11:52:19 +0000
commitaed557087269cd052aa76cc15af4a1fd70cbbf24 (patch)
tree15bbe7ba3ad64d39db33baa0b88a2dae4206568e /sys/kern/kern_exec.c
parent9af80719db341cf3e23d76c62553d77b6ad03568 (diff)
downloadsrc-aed557087269cd052aa76cc15af4a1fd70cbbf24.tar.gz
src-aed557087269cd052aa76cc15af4a1fd70cbbf24.zip
Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.h
begun with a repo-copy of mac.h to mac_framework.h. sys/mac.h now contains the userspace and user<->kernel API and definitions, with all in-kernel interfaces moved to mac_framework.h, which is now included across most of the kernel instead. This change is the first step in a larger cleanup and sweep of MAC Framework interfaces in the kernel, and will not be MFC'd. Obtained from: TrustedBSD Project Sponsored by: SPARTA
Notes
Notes: svn path=/head/; revision=163606
Diffstat (limited to 'sys/kern/kern_exec.c')
-rw-r--r--sys/kern/kern_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c
index 97825cb78593..be7dbe63b19c 100644
--- a/sys/kern/kern_exec.c
+++ b/sys/kern/kern_exec.c
@@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$");
#include <sys/sysproto.h>
#include <sys/signalvar.h>
#include <sys/kernel.h>
-#include <sys/mac.h>
#include <sys/mount.h>
#include <sys/filedesc.h>
#include <sys/fcntl.h>
@@ -80,6 +79,7 @@ __FBSDID("$FreeBSD$");
#include <machine/reg.h>
#include <security/audit/audit.h>
+#include <security/mac/mac_framework.h>
MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments");