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:
des 2008-02-08 09:44:34 +00:00
parent f6ce9fe601
commit 1de1bb1bc6

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