diff options
author | Ed Maste <emaste@FreeBSD.org> | 2016-09-19 16:07:32 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2016-09-19 16:07:32 +0000 |
commit | bd24e9a105c85d66dca5b7bab1a4e1a478def5f6 (patch) | |
tree | 5fbd2764ccb67cedc1d06783834d76a3d3b88883 /usr.sbin/uefisign | |
parent | 36596c2a29c0c63a5882711aa0d60a6c08c95a29 (diff) |
uefisign: Remove backwards-compatibility sys/capability.h support
uefisign previously included sys/capability.h or sys/capsicum.h based
on __FreeBSD_version in order to facilitate development on the stable
branch. The Capsicum header is now installed as sys/capsicum.h in
stable/10 and FreeBSD 10.3, so there's no need for the backwards
compatibility support.
Reviewed by: trasz
Sponsored by: The FreeBSD Foundation
Notes
Notes:
svn path=/head/; revision=305980
Diffstat (limited to 'usr.sbin/uefisign')
-rw-r--r-- | usr.sbin/uefisign/child.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/usr.sbin/uefisign/child.c b/usr.sbin/uefisign/child.c index 7dfc21108e75..c8f5e4c277dc 100644 --- a/usr.sbin/uefisign/child.c +++ b/usr.sbin/uefisign/child.c @@ -32,11 +32,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> -#if __FreeBSD_version >= 1100000 #include <sys/capsicum.h> -#else -#include <sys/capability.h> -#endif #include <sys/types.h> #include <sys/stat.h> #include <assert.h> |