aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/uefisign
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2016-09-19 16:07:32 +0000
committerEd Maste <emaste@FreeBSD.org>2016-09-19 16:07:32 +0000
commitbd24e9a105c85d66dca5b7bab1a4e1a478def5f6 (patch)
tree5fbd2764ccb67cedc1d06783834d76a3d3b88883 /usr.sbin/uefisign
parent36596c2a29c0c63a5882711aa0d60a6c08c95a29 (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.c4
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>