The branch stable/14 has been updated by des: URL: https://cgit.FreeBSD.org/src/commit/?id=08e02120541a45ad803861d53fe542c599514b43
commit 08e02120541a45ad803861d53fe542c599514b43 Author: Dag-Erling Smørgrav <[email protected]> AuthorDate: 2026-06-05 16:46:49 +0000 Commit: Dag-Erling Smørgrav <[email protected]> CommitDate: 2026-06-16 01:00:21 +0000 fts: Correct description of fts_set MFC after: 1 week Sponsored by: Klara, Inc. Fixes: e030e4e73fe7 ("lib/libc/gen/fts.3: use 'options' consistently in fts_set() description") Differential Revision: https://reviews.freebsd.org/D57326 (cherry picked from commit 77fdeba18c07e243ea1e20916ee0dc31b9d6ac32) --- lib/libc/gen/fts.3 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/libc/gen/fts.3 b/lib/libc/gen/fts.3 index 9c249480b18a..69468e2027a5 100644 --- a/lib/libc/gen/fts.3 +++ b/lib/libc/gen/fts.3 @@ -44,7 +44,7 @@ .Ft FTSENT * .Fn fts_children "FTS *ftsp" "int options" .Ft int -.Fn fts_set "FTS *ftsp" "FTSENT *f" "int options" +.Fn fts_set "FTS *ftsp" "FTSENT *f" "int instr" .Ft void .Fn fts_set_clientptr "FTS *ftsp" "void *clientdata" .Ft void * @@ -703,8 +703,9 @@ The .Fn fts_set function returns 0 on success, and \-1 if an error occurs. -.Em Option -must be set to one of the following values: +Its +.Fa instr +argument must have one of the following values: .Bl -tag -width FTS_PHYSICAL .It Dv FTS_AGAIN Re-visit the file; any file type may be re-visited.
