summaryrefslogtreecommitdiff
path: root/src/pathchk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pathchk.c')
-rw-r--r--src/pathchk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pathchk.c b/src/pathchk.c
index bba26d5db..e62a3b588 100644
--- a/src/pathchk.c
+++ b/src/pathchk.c
@@ -58,7 +58,7 @@ extern int errno;
#define AUTHORS "David MacKenzie and Jim Meyering"
-#ifdef _POSIX_VERSION
+#if HAVE_PATHCONF
# ifndef PATH_MAX
# define PATH_MAX_FOR(p) pathconf_wrapper ((p), _PC_PATH_MAX)
# endif /* not PATH_MAX */
@@ -66,7 +66,7 @@ extern int errno;
# define NAME_MAX_FOR(p) pathconf_wrapper ((p), _PC_NAME_MAX);
# endif /* not NAME_MAX */
-#else /* not _POSIX_VERSION */
+#else
# include <sys/param.h>
# ifndef PATH_MAX
@@ -85,7 +85,7 @@ extern int errno;
# endif /* not MAXNAMLEN */
# endif /* not NAME_MAX */
-#endif /* not _POSIX_VERSION */
+#endif
#ifndef _POSIX_PATH_MAX
# define _POSIX_PATH_MAX 255