From 9eb3e4639aa10e1473c15b1ec3d3265342d640cc Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Wed, 12 Aug 2009 10:45:45 +0000 Subject: [PATCH] Correctly audit real gids following changes to the audit record argument interface. Approved by: re (kib) --- sys/security/audit/audit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/security/audit/audit.h b/sys/security/audit/audit.h index 52bb425b55d7..f66f33a44485 100644 --- a/sys/security/audit/audit.h +++ b/sys/security/audit/audit.h @@ -232,7 +232,7 @@ void audit_thread_free(struct thread *td); #define AUDIT_ARG_RGID(rgid) do { \ if (AUDITING_TD(curthread)) \ - audit_arg_gid((rgid)); \ + audit_arg_rgid((rgid)); \ } while (0) #define AUDIT_ARG_RUID(ruid) do { \