diff options
author | mpp <mpp@FreeBSD.org> | 1997-03-09 00:43:49 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1997-03-09 00:43:49 +0000 |
commit | 5618b9b15f5f5d2412621797c0c00b5ccd60032c (patch) | |
tree | 7326ef3f8ee445fe0bb686815d58a8ad980b88ad /lib/libc | |
parent | db4d23e2e109882080fb07b9694e903e75a7c870 (diff) | |
download | FreeBSD-src-5618b9b15f5f5d2412621797c0c00b5ccd60032c.zip FreeBSD-src-5618b9b15f5f5d2412621797c0c00b5ccd60032c.tar.gz |
The first argument to fts_set was wrong. Part of PR# 2917.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/fts.3 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gen/fts.3 b/lib/libc/gen/fts.3 index 630a5b2..7813665 100644 --- a/lib/libc/gen/fts.3 +++ b/lib/libc/gen/fts.3 @@ -30,6 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)fts.3 8.5 (Berkeley) 4/16/94 +.\" $Id$ .\" .Dd April 16, 1994 .Dt FTS 3 @@ -48,7 +49,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 options" .Ft int .Fn fts_close "FTS *ftsp" .Sh DESCRIPTION |