svn commit: r207654 - stable/8/lib/libc/stdlib

[ Available lists | Index of svn-src-all | Month of May 2010 | Week of 5 May 2010 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Konstantin Belousov <kib@FreeBSD.org>
Date
5 May 2010 09:29:34
Subject
svn commit: r207654 - stable/8/lib/libc/stdlib
Message-ID
201005050929.o459TYHo007362@svn.freebsd.org


[ Hide this part ]
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 .


Elapsed time: 0.135 seconds