1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-25 07:49:18 +00:00

Fix spelling of MAXNAMLEN.

MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2016-03-09 13:45:03 +00:00
parent 08190ef7de
commit 62411b41c4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=296565

View File

@ -75,7 +75,7 @@ uint32_t d_fileno;
uint16_t d_reclen;
uint8_t d_type;
uint8_t d_namlen;
char d_name[MAXNAMELEN + 1]; /* see below */
char d_name[MAXNAMLEN + 1]; /* see below */
.Ed
.Pp
The
@ -103,7 +103,7 @@ entry specifies the length of the file name excluding the null byte.
Thus the actual size of
.Fa d_name
may vary from 1 to
.Dv MAXNAMELEN
.Dv MAXNAMLEN
\&+ 1.
.Pp
Entries may be separated by extra space.