From owner-cvs-src-old@FreeBSD.ORG Mon Jan 24 06:18:14 2011 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 50760106566C for ; Mon, 24 Jan 2011 06:18:14 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3B1DF8FC15 for ; Mon, 24 Jan 2011 06:18:14 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p0O6IEBl032025 for ; Mon, 24 Jan 2011 06:18:14 GMT (envelope-from mckusick@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p0O6IEnO032024 for cvs-src-old@freebsd.org; Mon, 24 Jan 2011 06:18:14 GMT (envelope-from mckusick@repoman.freebsd.org) Message-Id: <201101240618.p0O6IEnO032024@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mckusick@repoman.freebsd.org using -f From: Kirk McKusick Date: Mon, 24 Jan 2011 06:17:05 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/dump itime.c main.c optr.c tape.c src/sbin/fsck_ffs inode.c main.c suj.c src/sbin/fsdb fsdb.c src/sbin/fsirand fsirand.c src/sbin/newfs mkfs.c src/usr.sbin/makefs ffs.c makefs.c src/usr.sbin/quot quot.c 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, 24 Jan 2011 06:18:14 -0000 mckusick 2011-01-24 06:17:05 UTC FreeBSD src repository Modified files: sbin/dump itime.c main.c optr.c tape.c sbin/fsck_ffs inode.c main.c suj.c sbin/fsdb fsdb.c sbin/fsirand fsirand.c sbin/newfs mkfs.c usr.sbin/makefs ffs.c makefs.c usr.sbin/quot quot.c Log: SVN rev 217769 on 2011-01-24 06:17:05Z by mckusick The dump, fsck_ffs, fsdb, fsirand, newfs, makefs, and quot utilities include sys/time.h instead of time.h. This include is incorrect as per the manpages for the APIs and the POSIX definitions. This commit replaces sys/time.h where necessary with time.h. The commit also includes some minor style(9) header fixup in newfs. This commit is part of a larger effort by Garrett Cooper started in //depot/user/gcooper/posix-conformance-work/ -- to make FreeBSD more POSIX compliant. Submitted by: Garrett Cooper yanegomi at gmail dot com Revision Changes Path 1.19 +1 -1 src/sbin/dump/itime.c 1.69 +1 -1 src/sbin/dump/main.c 1.38 +1 -1 src/sbin/dump/optr.c 1.28 +1 -1 src/sbin/dump/tape.c 1.41 +1 -1 src/sbin/fsck_ffs/inode.c 1.62 +2 -2 src/sbin/fsck_ffs/main.c 1.5 +3 -2 src/sbin/fsck_ffs/suj.c 1.37 +1 -1 src/sbin/fsdb/fsdb.c 1.15 +2 -2 src/sbin/fsirand/fsirand.c 1.105 +9 -10 src/sbin/newfs/mkfs.c 1.4 +1 -0 src/usr.sbin/makefs/ffs.c 1.3 +1 -0 src/usr.sbin/makefs/makefs.c 1.28 +1 -1 src/usr.sbin/quot/quot.c