Replaced _POSIX_PATH_MAX with its value, 255, because HP-UX didn't

have this POSIX-required symbol. ???
This commit is contained in:
shivers 1996-11-12 11:44:20 +00:00
parent faa08159d0
commit e945b99adf
1 changed files with 3 additions and 1 deletions

View File

@ -178,11 +178,13 @@ int set_cloexec(int fd, int val)
/* Posix rules: If PATH_MAX is defined, it's the length of longest path. /* Posix rules: If PATH_MAX is defined, it's the length of longest path.
** Otherwise, _POSIX_PATH_MAX = 255, and is a lower bound on said length. ** Otherwise, _POSIX_PATH_MAX = 255, and is a lower bound on said length.
** I'm writing out 255 as a literal because HP-UX isn't finding
** _POSIX_PATH_MAX.
*/ */
#ifdef PATH_MAX #ifdef PATH_MAX
#define scsh_path_max (PATH_MAX) #define scsh_path_max (PATH_MAX)
#else #else
#define scsh_path_max (_POSIX_PATH_MAX) #define scsh_path_max (255)
#endif #endif
/* Simple-minded POSIX version. */ /* Simple-minded POSIX version. */