Turn on AUDIT_ARG_RIGHTS() for cap_new(2).

Now that the code is in place to audit capability method rights, start
using it to audit the 'rights' argument to cap_new(2).

Approved by: re (kib), mentor (rwatson)
Sponsored by: Google Inc
This commit is contained in:
Jonathan Anderson 2011-07-22 12:50:21 +00:00
parent c5f2a23c79
commit 7a270867e7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=224268

View file

@ -224,9 +224,7 @@ cap_new(struct thread *td, struct cap_new_args *uap)
cap_rights_t rights = uap->rights;
AUDIT_ARG_FD(fd);
#ifdef notyet /* capability auditing will follow in a few commits */
AUDIT_ARG_RIGHTS(rights);
#endif
error = fget(td, fd, &fp);
if (error)
return (error);