From owner-svn-src-stable-8@FreeBSD.ORG Wed May 5 09:29:34 2010 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68601106566C; Wed, 5 May 2010 09:29:34 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id 576518FC12; Wed, 5 May 2010 09:29:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o459TY6R007364; Wed, 5 May 2010 09:29:34 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o459TYHo007362; Wed, 5 May 2010 09:29:34 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201005050929.o459TYHo007362@svn.freebsd.org> From: Konstantin Belousov Date: Wed, 5 May 2010 09:29:34 +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: r207654 - stable/8/lib/libc/stdlib X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2010 09:29:34 -0000 Author: kib Date: Wed May 5 09:29:34 2010 New Revision: 207654 URL: http://svn.freebsd.org/changeset/base/207654 Log: MFC r207009: C language does not has references, it provides pointers. Modified: stable/8/lib/libc/stdlib/realpath.3 Directory Properties: stable/8/lib/libc/ (props changed) stable/8/lib/libc/stdtime/ (props changed) Modified: stable/8/lib/libc/stdlib/realpath.3 ============================================================================== --- stable/8/lib/libc/stdlib/realpath.3 Wed May 5 09:01:15 2010 (r207653) +++ stable/8/lib/libc/stdlib/realpath.3 Wed May 5 09:29:34 2010 (r207654) @@ -56,13 +56,13 @@ and in .Fa pathname , and copies the resulting absolute pathname into -the memory referenced by +the memory pointed to by .Fa resolved_path . The .Fa resolved_path argument .Em must -refer to a buffer capable of storing at least +point to a buffer capable of storing at least .Dv PATH_MAX characters, or be .Dv NULL .