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

/freebsd-10.1-release/usr.bin/pathchk/
H A Dpathchk.c100 long complen, namemax, pathmax, svnamemax; local
168 pathmax = pathconf(path, _PC_PATH_MAX);
169 if (pathmax == -1 && errno != 0)
170 pathmax = PATH_MAX;
172 pathmax = _POSIX_PATH_MAX;
173 if (pathmax != -1 && strlen(path) >= (size_t)pathmax) {
174 warnx("%s: path too long (limit %ld)", path, pathmax - 1);

Completed in 44 milliseconds