1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

MAXPATHNAMELEN -> MAXPATHLEN

Submitted by:	ianm@kashmir.cit.nepean.uws.edu.au via OpenBSD
Obtained from:	OpenBSD
This commit is contained in:
Kris Kennaway 2000-11-19 11:29:58 +00:00
parent e10471bbba
commit b05092e25a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68896

View File

@ -114,7 +114,7 @@ char *s, *p, buf[BUFSIZ];
To detect truncation, perhaps while building a pathname, something
like the following might be used:
.Bd -literal -offset indent
char *dir, *file, pname[MAXPATHNAMELEN];
char *dir, *file, pname[MAXPATHLEN];
.Li ...