diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-27 19:00:49 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-27 19:00:49 +0000 |
commit | 396099206aae4ad71db158a345e3e8a74fcc70c7 (patch) | |
tree | fe1265ee060ee239daa47793ede7b9f38aec4245 /lib | |
parent | 4d5dc383aa5ce2780d42d9155afb0fcbd2211b87 (diff) |
fts_pathlen and fts_namelen are u_short, not short
Diffstat (limited to 'lib')
-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 */ |