diff options
author | kib <kib@FreeBSD.org> | 2008-03-31 12:01:21 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2008-03-31 12:01:21 +0000 |
commit | eff8c6d35eb85c880ee73166dbff3ba639b6569c (patch) | |
tree | f8cc8d866703361e98f57783e3292705ce2d5dbc /sys/security | |
parent | fb67926ebba3585578dba016e05aabe5090ea064 (diff) | |
download | FreeBSD-src-eff8c6d35eb85c880ee73166dbff3ba639b6569c.zip FreeBSD-src-eff8c6d35eb85c880ee73166dbff3ba639b6569c.tar.gz |
Add the support for the AT_FDCWD and fd-relative name lookups to the
namei(9).
Based on the submission by rdivacky,
sponsored by Google Summer of Code 2007
Reviewed by: rwatson, rdivacky
Tested by: pho
Diffstat (limited to 'sys/security')
-rw-r--r-- | sys/security/mac/mac_syscalls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/security/mac/mac_syscalls.c b/sys/security/mac/mac_syscalls.c index 9b5286c..701b019 100644 --- a/sys/security/mac/mac_syscalls.c +++ b/sys/security/mac/mac_syscalls.c @@ -44,6 +44,7 @@ __FBSDID("$FreeBSD$"); #include "opt_mac.h" #include <sys/param.h> +#include <sys/fcntl.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/malloc.h> |