aboutsummaryrefslogtreecommitdiff
path: root/sys/security
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2006-06-05 13:45:05 +0000
committerRobert Watson <rwatson@FreeBSD.org>2006-06-05 13:45:05 +0000
commitb3ae6323f0531bdf6b413e63598919ee30bcd45c (patch)
tree07ef5ed46ef7244ba71edddd3c3ebe6587995415 /sys/security
parent40c96d727991fb248caea661e09280325281ae86 (diff)
downloadsrc-b3ae6323f0531bdf6b413e63598919ee30bcd45c.tar.gz
src-b3ae6323f0531bdf6b413e63598919ee30bcd45c.zip
Use struct kaudit_queue instead of a hand-crafted queue type for
audit records in the audit_worker thread. Obtained from: TrustedBSD Project
Notes
Notes: svn path=/head/; revision=159262
Diffstat (limited to 'sys/security')
-rw-r--r--sys/security/audit/audit_worker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/security/audit/audit_worker.c b/sys/security/audit/audit_worker.c
index 7da4f99124f7..8e34748ffe49 100644
--- a/sys/security/audit/audit_worker.c
+++ b/sys/security/audit/audit_worker.c
@@ -394,7 +394,7 @@ audit_worker_drain(void)
static void
audit_worker(void *arg)
{
- TAILQ_HEAD(, kaudit_record) ar_worklist;
+ struct kaudit_queue ar_worklist;
struct kaudit_record *ar;
struct ucred *audit_cred;
struct thread *audit_td;