Searched refs:pathmax (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/usr.bin/pathchk/
H A Dpathchk.c102 long complen, namemax, pathmax, svnamemax; local
170 pathmax = pathconf(path, _PC_PATH_MAX);
171 if (pathmax == -1 && errno != 0)
172 pathmax = PATH_MAX;
174 pathmax = _POSIX_PATH_MAX;
175 if (pathmax != -1 && strlen(path) >= (size_t)pathmax) {
176 warnx("%s: path too long (limit %ld)", path, pathmax - 1);

Completed in 53 milliseconds