From owner-svn-src-all@FreeBSD.ORG Tue May 29 08:56:56 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E5BFF106566C; Tue, 29 May 2012 08:56:56 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D04388FC17; Tue, 29 May 2012 08:56:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4T8uurM064539; Tue, 29 May 2012 08:56:56 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4T8uu3s064537; Tue, 29 May 2012 08:56:56 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201205290856.q4T8uu3s064537@svn.freebsd.org> From: Konstantin Belousov Date: Tue, 29 May 2012 08:56:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r236225 - stable/8/lib/libc/sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 May 2012 08:56:57 -0000 Author: kib Date: Tue May 29 08:56:56 2012 New Revision: 236225 URL: http://svn.freebsd.org/changeset/base/236225 Log: MFC r236042: Clarify the SEEK_HOLE description, it repositions the file pointer. Modified: stable/8/lib/libc/sys/lseek.2 Directory Properties: stable/8/lib/libc/ (props changed) stable/8/lib/libc/sys/ (props changed) Modified: stable/8/lib/libc/sys/lseek.2 ============================================================================== --- stable/8/lib/libc/sys/lseek.2 Tue May 29 08:53:24 2012 (r236224) +++ stable/8/lib/libc/sys/lseek.2 Tue May 29 08:56:56 2012 (r236225) @@ -28,7 +28,7 @@ .\" @(#)lseek.2 8.3 (Berkeley) 4/19/94 .\" $FreeBSD$ .\" -.Dd April 5, 2007 +.Dd May 26, 2012 .Dt LSEEK 2 .Os .Sh NAME @@ -92,9 +92,9 @@ If .Fa whence is .Dv SEEK_HOLE , -the offset of the start of the next hole greater than or equal to the supplied -.Fa offset -is returned. +the offset is set to the start of the next hole greater than or equal +to the supplied +.Fa offset . The definition of a hole is provided below. .It If