Home
last modified time | relevance | path

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

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