Home
last modified time | relevance | path

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

/src/usr.bin/pathchk/
H A Dpathchk.c99 long complen, namemax, pathmax, svnamemax; in check() local
167 pathmax = pathconf(path, _PC_PATH_MAX); in check()
168 if (pathmax == -1 && errno != 0) in check()
169 pathmax = PATH_MAX; in check()
171 pathmax = _POSIX_PATH_MAX; in check()
172 if (pathmax != -1 && strlen(path) >= (size_t)pathmax) { in check()
173 warnx("%s: path too long (limit %ld)", path, pathmax - 1); in check()