From owner-cvs-src-old@FreeBSD.ORG Mon Jun 29 20:19:38 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEAE710656C0 for ; Mon, 29 Jun 2009 20:19:38 +0000 (UTC) (envelope-from sson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BBC978FC12 for ; Mon, 29 Jun 2009 20:19:38 +0000 (UTC) (envelope-from sson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n5TKJcr8073813 for ; Mon, 29 Jun 2009 20:19:38 GMT (envelope-from sson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n5TKJcdF073812 for cvs-src-old@freebsd.org; Mon, 29 Jun 2009 20:19:38 GMT (envelope-from sson@repoman.freebsd.org) Message-Id: <200906292019.n5TKJcdF073812@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to sson@repoman.freebsd.org using -f From: Stacey Son Date: Mon, 29 Jun 2009 20:19:19 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/audit audit.c audit_arg.c audit_private.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Jun 2009 20:19:39 -0000 sson 2009-06-29 20:19:19 UTC FreeBSD src repository Modified files: sys/security/audit audit.c audit_arg.c audit_private.h Log: SVN rev 195177 on 2009-06-29 20:19:19Z by sson Dynamically allocate the gidset field in audit record. This fixes a problem created by the recent change that allows a large number of groups per user. The gidset field in struct kaudit_record is now dynamically allocated to the size needed rather than statically (using NGROUPS). Approved by: re@ (kensmith, rwatson), gnn (mentor) Revision Changes Path 1.52 +3 -0 src/sys/security/audit/audit.c 1.29 +7 -0 src/sys/security/audit/audit_arg.c 1.28 +3 -2 src/sys/security/audit/audit_private.h