s/MAXPATHLEN/PATH_MAX/ to reflect five-year old change to the code :)

Submitted by:	Joerg Sonnenberger <joerg@britannica.bec.de>
MFC after:	2 weeks
This commit is contained in:
Dag-Erling Smørgrav 2008-02-08 09:44:34 +00:00
parent 157d89fe25
commit e97f516c09
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176104

View File

@ -236,7 +236,7 @@ structure is defined as follows in
.In fetch.h :
.Bd -literal
struct url_ent {
char name[MAXPATHLEN];
char name[PATH_MAX];
struct url_stat stat;
};
.Ed