diff options
author | rwatson <rwatson@FreeBSD.org> | 2006-09-17 20:00:36 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2006-09-17 20:00:36 +0000 |
commit | 8b3f7ca1ce8cf2bc4798641c8aea9d3b1bc0eb0a (patch) | |
tree | 63c0b9aff80f863b5ddd1a4135eb8283c7d6ceb0 /sys/kern/kern_prot.c | |
parent | 42e50d33e634223f919cfc0ab16543bbc8e133eb (diff) | |
download | FreeBSD-src-8b3f7ca1ce8cf2bc4798641c8aea9d3b1bc0eb0a.zip FreeBSD-src-8b3f7ca1ce8cf2bc4798641c8aea9d3b1bc0eb0a.tar.gz |
Declare security and security.bsd sysctl hierarchies in sysctl.h along
with other commonly used sysctl name spaces, rather than declaring them
all over the place.
MFC after: 1 month
Sponsored by: nCircle Network Security, Inc.
Diffstat (limited to 'sys/kern/kern_prot.c')
-rw-r--r-- | sys/kern/kern_prot.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/kern_prot.c b/sys/kern/kern_prot.c index 2943939..a42ab93 100644 --- a/sys/kern/kern_prot.c +++ b/sys/kern/kern_prot.c @@ -70,9 +70,7 @@ __FBSDID("$FreeBSD$"); static MALLOC_DEFINE(M_CRED, "cred", "credentials"); -SYSCTL_DECL(_security); -SYSCTL_NODE(_security, OID_AUTO, bsd, CTLFLAG_RW, 0, - "BSD security policy"); +SYSCTL_NODE(_security, OID_AUTO, bsd, CTLFLAG_RW, 0, "BSD security policy"); #ifndef _SYS_SYSPROTO_H_ struct getpid_args { |