From 67629eb258e8c487c504dac7517ce787b2f338a9 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Wed, 1 Aug 2007 08:36:38 +0000 Subject: [PATCH] * fhandler.cc (check_posix_perms): Remove. (fhandler_base::fpathconf): Return value of pc.has_acls () instead of calling check_posix_perms. --- winsup/cygwin/ChangeLog | 6 ++++++ winsup/cygwin/fhandler.cc | 27 +-------------------------- 2 files changed, 7 insertions(+), 26 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 4cd396e25..2d2e4bbf9 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,9 @@ +2007-08-01 Corinna Vinschen + + * fhandler.cc (check_posix_perms): Remove. + (fhandler_base::fpathconf): Return value of pc.has_acls () instead + of calling check_posix_perms. + 2007-08-01 Corinna Vinschen * syscalls.cc (rename): Use unchanged path_conv in condition. diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc index 16f87a765..0b7cc6138 100644 --- a/winsup/cygwin/fhandler.cc +++ b/winsup/cygwin/fhandler.cc @@ -1584,31 +1584,6 @@ fhandler_base::fsync () return -1; } -/* Helper function for Cygwin specific pathconf flags _PC_POSIX_PERMISSIONS - and _PC_POSIX_SECURITY. */ -static int -check_posix_perm (const char *fname, int v) -{ - if (!allow_ntsec) - return 0; - - char *root = rootdir (fname, (char *)alloca (strlen (fname) + 2)); - - if (!allow_smbntsec - && ((root[0] == '\\' && root[1] == '\\') - || GetDriveType (root) == DRIVE_REMOTE)) - return 0; - - DWORD vsn, len, flags; - if (!GetVolumeInformation (root, NULL, 0, &vsn, &len, &flags, NULL, 16)) - { - __seterrno (); - return 0; - } - - return (flags & FS_PERSISTENT_ACLS) ? 1 : 0; -} - int fhandler_base::fpathconf (int v) { @@ -1663,7 +1638,7 @@ fhandler_base::fpathconf (int v) case _PC_POSIX_PERMISSIONS: case _PC_POSIX_SECURITY: if (get_device () == FH_FS) - return check_posix_perm (get_win32_name (), v); + return pc.has_acls (); set_errno (EINVAL); break; default: -- 2.43.5