From 396099206aae4ad71db158a345e3e8a74fcc70c7 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 27 Aug 1999 19:00:49 +0000 Subject: fts_pathlen and fts_namelen are u_short, not short --- lib/libc/gen/fts.3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libc/gen/fts.3') 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 */ -- cgit v1.2.3