diff options
author | rwatson <rwatson@FreeBSD.org> | 2014-03-16 10:55:57 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2014-03-16 10:55:57 +0000 |
commit | 33fdc14c0cd663baae9fad419e3f9cfe12578196 (patch) | |
tree | 33c10255950e4922f9ee4bc63543bd5dd3cd9f77 /sys/cddl/compat/opensolaris | |
parent | d2c1f34d5670ac7d1891f1f3c06cfaeee010b843 (diff) | |
download | FreeBSD-src-33fdc14c0cd663baae9fad419e3f9cfe12578196.zip FreeBSD-src-33fdc14c0cd663baae9fad419e3f9cfe12578196.tar.gz |
Update kernel inclusions of capability.h to use capsicum.h instead; some
further refinement is required as some device drivers intended to be
portable over FreeBSD versions rely on __FreeBSD_version to decide whether
to include capability.h.
MFC after: 3 weeks
Diffstat (limited to 'sys/cddl/compat/opensolaris')
-rw-r--r-- | sys/cddl/compat/opensolaris/sys/file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cddl/compat/opensolaris/sys/file.h b/sys/cddl/compat/opensolaris/sys/file.h index 5f83082..f9349fd 100644 --- a/sys/cddl/compat/opensolaris/sys/file.h +++ b/sys/cddl/compat/opensolaris/sys/file.h @@ -36,7 +36,7 @@ #ifdef _KERNEL typedef struct file file_t; -#include <sys/capability.h> +#include <sys/capsicum.h> static __inline file_t * getf(int fd, cap_rights_t *rightsp) |