Module Name: src
Committed By: dholland
Date: Sat Jan 23 08:17:18 UTC 2016
Modified Files:
src/lib/libc/sys: getdents.2
Log Message:
MAXNAMLEN, not MAXNAMELEN. From Giuseppe Gatta on netbsd-docs.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/lib/libc/sys/getdents.2
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/sys/getdents.2
diff -u src/lib/libc/sys/getdents.2:1.23 src/lib/libc/sys/getdents.2:1.24
--- src/lib/libc/sys/getdents.2:1.23 Wed Jul 20 17:51:25 2011
+++ src/lib/libc/sys/getdents.2 Sat Jan 23 08:17:18 2016
@@ -1,4 +1,4 @@
-.\" $NetBSD: getdents.2,v 1.23 2011/07/20 17:51:25 njoly Exp $
+.\" $NetBSD: getdents.2,v 1.24 2016/01/23 08:17:18 dholland Exp $
.\"
.\" Copyright (c) 1989, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -70,7 +70,7 @@ struct dirent {
uint16_t d_reclen; /* length of this record */
uint16_t d_namlen; /* length of d_name */
uint8_t d_type; /* file type, see below */
- char d_name[MAXNAMELEN + 1];
+ char d_name[MAXNAMLEN + 1];
};
.Ed
.Pp