diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2005-05-30 07:05:07 +0000 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-05-30 07:05:07 +0000 |
| commit | b224f94761aebcd623cecb3b1050b89c945d7808 (patch) | |
| tree | 5b6e82451a86c5789e06809aaa22e66990157b91 /src/pathchk.c | |
| parent | dd seek=N now conforms to POSIX if the output isn't seekable. (diff) | |
| download | coreutils-b224f94761aebcd623cecb3b1050b89c945d7808.tar.gz coreutils-b224f94761aebcd623cecb3b1050b89c945d7808.zip | |
(_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
Define to 256, not 255, as per modern POSIX.
Diffstat (limited to 'src/pathchk.c')
| -rw-r--r-- | src/pathchk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathchk.c b/src/pathchk.c index 1ef0d0496..e4c0f448f 100644 --- a/src/pathchk.c +++ b/src/pathchk.c @@ -40,7 +40,7 @@ #define AUTHORS "Paul Eggert", "David MacKenzie", "Jim Meyering" #ifndef _POSIX_PATH_MAX -# define _POSIX_PATH_MAX 255 +# define _POSIX_PATH_MAX 256 #endif #ifndef _POSIX_NAME_MAX # define _POSIX_NAME_MAX 14 |
