about summary refs log tree commit diff
path: root/io/tst-fchownat.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-28 17:52:34 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-28 17:52:46 +0100
commitfc221145a734d128d8f56f40d40fd4bb70a1d151 (patch)
tree4856d15bf256a20cf4642808673f355a70782c29 /io/tst-fchownat.c
parentcef7166ac10cff95e8e8ab76e32376faf34800e5 (diff)
downloadglibc-fc221145a734d128d8f56f40d40fd4bb70a1d151.tar.gz
glibc-fc221145a734d128d8f56f40d40fd4bb70a1d151.tar.xz
glibc-fc221145a734d128d8f56f40d40fd4bb70a1d151.zip
hurd: Fix building io/tst-fchownat.c
	* io/tst-fchownat.c [!defined _POSIX_CHOWN_RESTRICTED]: Act like when
	_POSIX_CHOWN_RESTRICTED is defined to 0.
Diffstat (limited to 'io/tst-fchownat.c')
-rw-r--r--io/tst-fchownat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/tst-fchownat.c b/io/tst-fchownat.c
index e8adf6229f..8318842249 100644
--- a/io/tst-fchownat.c
+++ b/io/tst-fchownat.c
@@ -20,7 +20,7 @@ static int dir_fd;
 static void
 prepare (void)
 {
-#if _POSIX_CHOWN_RESTRICTED == 0
+#if !defined _POSIX_CHOWN_RESTRICTED || _POSIX_CHOWN_RESTRICTED == 0
   if (pathconf (test_dir, _PC_CHOWN_RESTRICTED) != 0)
 #endif
     {