Add SYSCTL_NODE(_security,...,_bsd,...)

This commit is contained in:
Joel Sherrill 2012-04-04 17:57:47 -05:00
parent 772d929a3c
commit c4f90c7881

View File

@ -28,6 +28,7 @@
#include <freebsd/sys/malloc.h>
#include <freebsd/sys/ucred.h>
#include <freebsd/sys/refcount.h>
#include <freebsd/sys/sysctl.h>
static MALLOC_DEFINE(M_CRED, "cred", "credentials");
@ -238,3 +239,4 @@ crsetgroups(struct ucred *cr, int ngrp, gid_t *groups)
crsetgroups_locked(cr, ngrp, groups);
}
SYSCTL_NODE(_security, OID_AUTO, bsd, CTLFLAG_RW, 0, "BSD security policy");