From owner-svn-src-head@FreeBSD.ORG Sat Dec 27 11:12:24 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 4B1FF106564A; Sat, 27 Dec 2008 11:12:24 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3762E8FC1B; Sat, 27 Dec 2008 11:12:24 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mBRBCOrh069943; Sat, 27 Dec 2008 11:12:24 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBRBCOjN069941; Sat, 27 Dec 2008 11:12:24 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <200812271112.mBRBCOjN069941@svn.freebsd.org> From: Robert Watson Date: Sat, 27 Dec 2008 11:12:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r186512 - head/lib/libutil 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: Sat, 27 Dec 2008 11:12:24 -0000 Author: rwatson Date: Sat Dec 27 11:12:23 2008 New Revision: 186512 URL: http://svn.freebsd.org/changeset/base/186512 Log: Include param.h instead of types.h when using user.h. Otherwise there is a dependence on ucred.h including audit.h including param.h, which we would like to eliminate. MFC after: 3 weeks Modified: head/lib/libutil/kinfo_getfile.c head/lib/libutil/kinfo_getvmmap.c Modified: head/lib/libutil/kinfo_getfile.c ============================================================================== --- head/lib/libutil/kinfo_getfile.c Sat Dec 27 11:00:20 2008 (r186511) +++ head/lib/libutil/kinfo_getfile.c Sat Dec 27 11:12:23 2008 (r186512) @@ -1,7 +1,7 @@ #include __FBSDID("$FreeBSD$"); -#include +#include #include #include #include Modified: head/lib/libutil/kinfo_getvmmap.c ============================================================================== --- head/lib/libutil/kinfo_getvmmap.c Sat Dec 27 11:00:20 2008 (r186511) +++ head/lib/libutil/kinfo_getvmmap.c Sat Dec 27 11:12:23 2008 (r186512) @@ -1,7 +1,7 @@ #include __FBSDID("$FreeBSD$"); -#include +#include #include #include #include