diff options
-rw-r--r-- | lib/libc/gen/fts.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/fts.3 b/lib/libc/gen/fts.3 index 953a378b3b2..0fc6263fe23 100644 --- a/lib/libc/gen/fts.3 +++ b/lib/libc/gen/fts.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fts.3,v 1.13 1999/07/09 13:35:20 aaron Exp $ +.\" $OpenBSD: fts.3,v 1.14 1999/08/27 19:00:48 millert Exp $ .\" .\" Copyright (c) 1989, 1991, 1993, 1994 .\" The Regents of the University of California. All rights reserved. @@ -115,9 +115,9 @@ typedef struct _ftsent { u_short fts_info; /* flags for FTSENT structure */ char *fts_accpath; /* access path */ char *fts_path; /* root path */ - short fts_pathlen; /* strlen(fts_path) */ + u_short fts_pathlen; /* strlen(fts_path) */ char *fts_name; /* file name */ - short fts_namelen; /* strlen(fts_name) */ + u_short fts_namelen; /* strlen(fts_name) */ short fts_level; /* depth (-1 to N) */ int fts_errno; /* file errno */ long fts_number; /* local numeric value */ |