Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Oct 2021 09:24:19 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 8c384596a83f - stable/13 - Fix mistakes in link(2) and shm_open(2)
Message-ID:  <202110100924.19A9OJes003538@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=8c384596a83fc807f1ddb07bad6dffca6ad804ac

commit 8c384596a83fc807f1ddb07bad6dffca6ad804ac
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-10-06 03:38:26 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-10-10 09:21:18 +0000

    Fix mistakes in link(2) and shm_open(2)
    
    PR:     258957
    
    (cherry picked from commit 8d3cd7767a2ea1816c31e1dbe7957253e723e559)
---
 lib/libc/sys/link.2     | 4 ++--
 lib/libc/sys/shm_open.2 | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/libc/sys/link.2 b/lib/libc/sys/link.2
index 37225f9571d0..ab686266cd21 100644
--- a/lib/libc/sys/link.2
+++ b/lib/libc/sys/link.2
@@ -126,9 +126,9 @@ flag in the
 manual page.
 .It Dv AT_EMPTY_PATH
 If the
-.Fa path2
+.Fa name1
 argument is an empty string, link the file referenced by the descriptor
-.Fa fd2 .
+.Fa fd1 .
 The operation requires that the calling process has the
 .Dv PRIV_VFS_FHOPEN
 privilege, effectively being executed with effective user
diff --git a/lib/libc/sys/shm_open.2 b/lib/libc/sys/shm_open.2
index e231115613cf..ec12f9f2c0b7 100644
--- a/lib/libc/sys/shm_open.2
+++ b/lib/libc/sys/shm_open.2
@@ -369,7 +369,7 @@ does not begin with a slash
 character.
 .It Bq Er ENOENT
 .Dv O_CREAT
-is specified and the named shared memory object does not exist.
+is not specified and the named shared memory object does not exist.
 .It Bq Er EEXIST
 .Dv O_CREAT
 and



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110100924.19A9OJes003538>