diff options
author | Christian S.J. Peron <csjp@FreeBSD.org> | 2010-01-31 22:31:01 +0000 |
---|---|---|
committer | Christian S.J. Peron <csjp@FreeBSD.org> | 2010-01-31 22:31:01 +0000 |
commit | 583450efd7303a5af0aed1b66486e4ebefbd7152 (patch) | |
tree | e5ce7622af78ea1b1e9834f1f968de6dc8b681a7 | |
parent | ecf4b67af3cb96275f95a0b0d146b8d2320421d1 (diff) |
Notes
-rw-r--r-- | sys/security/audit/audit_bsm.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/security/audit/audit_bsm.c b/sys/security/audit/audit_bsm.c index b1a9931e2111..faa458353187 100644 --- a/sys/security/audit/audit_bsm.c +++ b/sys/security/audit/audit_bsm.c @@ -842,6 +842,13 @@ kaudit_to_bsm(struct kaudit_record *kar, struct au_record **pau) UPATH1_VNODE1_TOKENS; break; + case AUE_CLOSEFROM: + if (ARG_IS_VALID(kar, ARG_FD)) { + tok = au_to_arg32(1, "fd", ar->ar_arg_fd); + kau_write(rec, tok); + } + break; + case AUE_CORE: if (ARG_IS_VALID(kar, ARG_SIGNUM)) { tok = au_to_arg32(1, "signal", ar->ar_arg_signum); |