Unbreak support for systems that have no limit on pathname length.
Noticed by: bde
This commit is contained in:
parent
495bedfbd0
commit
ea87e79d5f
@ -157,10 +157,8 @@ check(const char *path)
|
||||
pathmax = PATH_MAX;
|
||||
} else
|
||||
pathmax = _POSIX_PATH_MAX;
|
||||
/* PATH_MAX includes space for the trailing null byte. */
|
||||
pathmax--;
|
||||
if (pathmax != -1 && strlen(path) > (size_t)pathmax) {
|
||||
warnx("%s: path too long (limit %ld)", path, pathmax);
|
||||
if (pathmax != -1 && strlen(path) >= (size_t)pathmax) {
|
||||
warnx("%s: path too long (limit %ld)", path, pathmax - 1);
|
||||
goto bad;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user