From b87b7fc3e6e41cf8006fb2341c236a46f6d8bdd4 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Fri, 14 Mar 2008 17:22:27 +0000 Subject: Updated to fedora-glibc-20080310T1651 --- io/tst-fchownat.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'io') diff --git a/io/tst-fchownat.c b/io/tst-fchownat.c index fd32ac9e6b..da8fd3b023 100644 --- a/io/tst-fchownat.c +++ b/io/tst-fchownat.c @@ -19,14 +19,17 @@ static int dir_fd; static void prepare (void) { -#if _POSIX_CHOWN_RESTRICTED > 0 - uid_t uid = getuid (); - if (uid != 0) +#if _POSIX_CHOWN_RESTRICTED == 0 + if (pathconf (test_dir, _PC_CHOWN_RESTRICTED) != 0) +#endif { - puts ("need root privileges"); - exit (0); + uid_t uid = getuid (); + if (uid != 0) + { + puts ("need root privileges"); + exit (0); + } } -#endif size_t test_dir_len = strlen (test_dir); static const char dir_name[] = "/tst-fchownat.XXXXXX"; -- cgit v1.2.3