From owner-svn-src-head@FreeBSD.ORG Wed Dec 31 13:57:27 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71D091065687; Wed, 31 Dec 2008 13:57:27 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 4B98F8FC17; Wed, 31 Dec 2008 13:57:27 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTP id EA27F46B03; Wed, 31 Dec 2008 08:57:26 -0500 (EST) Date: Wed, 31 Dec 2008 13:57:26 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org In-Reply-To: <200812311356.mBVDuVHE027394@svn.freebsd.org> Message-ID: References: <200812311356.mBVDuVHE027394@svn.freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: Re: svn commit: r186650 - in head/sys: conf security/audit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Dec 2008 13:57:28 -0000 On Wed, 31 Dec 2008, Robert Watson wrote: > Author: rwatson > Date: Wed Dec 31 13:56:31 2008 > New Revision: 186650 > URL: http://svn.freebsd.org/changeset/base/186650 > > Log: > Commit two files missed in previous commit: hook up audit_bsm_errno.c > and adapt for kernel build environment. > > Obtained from: TrustedBSD Project > Sponsored by: Apple, Inc. Spotted by: ganbold Sorry about that -- we'll see if tinderbox fires or not. Robert N M Watson Computer Laboratory University of Cambridge > > Modified: > head/sys/conf/files > head/sys/security/audit/audit_bsm_errno.c > > Modified: head/sys/conf/files > ============================================================================== > --- head/sys/conf/files Wed Dec 31 11:56:35 2008 (r186649) > +++ head/sys/conf/files Wed Dec 31 13:56:31 2008 (r186650) > @@ -2534,6 +2534,7 @@ rpc/rpcsec_gss/svc_rpcsec_gss.c optional > security/audit/audit.c optional audit > security/audit/audit_arg.c optional audit > security/audit/audit_bsm.c optional audit > +security/audit/audit_bsm_errno.c optional audit > security/audit/audit_bsm_klib.c optional audit > security/audit/audit_bsm_token.c optional audit > security/audit/audit_pipe.c optional audit > > Modified: head/sys/security/audit/audit_bsm_errno.c > ============================================================================== > --- head/sys/security/audit/audit_bsm_errno.c Wed Dec 31 11:56:35 2008 (r186649) > +++ head/sys/security/audit/audit_bsm_errno.c Wed Dec 31 13:56:31 2008 (r186650) > @@ -32,10 +32,12 @@ > #include > __FBSDID("$FreeBSD$"); > > -#include > +#include > + > +#include > > #include > -#include > +#include > > #include > >