minor changes + typos
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 30 Nov 1990 09:01:14 +0000 (01:01 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 30 Nov 1990 09:01:14 +0000 (01:01 -0800)
SCCS-vsn: lib/libc/gen/fts.3 5.8

usr/src/lib/libc/gen/fts.3

index ea4c04b..f68adad 100644 (file)
@@ -3,7 +3,7 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"    @(#)fts.3       5.7 (Berkeley) %G%
+.\"    @(#)fts.3       5.8 (Berkeley) %G%
 .\"
 .TH FTS 3 ""
 .UC 7
@@ -85,7 +85,7 @@ typedef struct _ftsent {
        char *fts_name;                 /* file name */
        short fts_namelen;                      /* strlen(fts_name) */
        short fts_level;                        /* depth (\-1 to N) */
-       long fts_number                         /* local numeric value */
+       long fts_number;                        /* local numeric value */
        void *fts_pointer;              /* local address value */
        struct ftsent *fts_parent;              /* parent directory */
        struct ftsent *fts_link;                /* cycle or next file structure */
@@ -560,13 +560,17 @@ returns 0 on success, and -1 if an error occurs.
 .SH ERRORS
 .I Fts_open
 may fail and set errno for any of the errors specified for the library
-function
+functions
+.IR open (2)
+and
 .IR malloc (3).
 .PP
 .I Fts_close
 may fail and set errno for any of the errors specified for the library
-function
-.IR chdir (2).
+functions
+.IR chdir (2)
+and
+.IR close (2).
 .PP
 .I Fts_read
 and
@@ -574,7 +578,6 @@ and
 may fail and set errno for any of the errors specified for the library
 functions
 .IR chdir (2),
-.IR getgroups (2),
 .IR malloc (3),
 .IR opendir (3),
 .IR readdir (3)