Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/security.cc')
-rw-r--r--winsup/cygwin/security.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/security.cc b/winsup/cygwin/security.cc
index 1052f98c0..509bd1ab0 100644
--- a/winsup/cygwin/security.cc
+++ b/winsup/cygwin/security.cc
@@ -358,7 +358,12 @@ get_file_attribute (HANDLE handle, path_conv &pc,
get_info_from_sd (sd, attribute, uidret, gidret);
return 0;
}
- else
+ /* ENOSYS is returned by get_file_sd if fetching the DACL from a remote
+ share returns STATUS_INVALID_NETWORK_RESPONSE, which in turn is
+ converted to ERROR_BAD_NET_RESP. This potentially occurs when trying
+ to fetch DACLs from a NT4 machine which is not part of the domain of
+ the requesting machine. */
+ else if (get_errno () != ENOSYS)
{
if (uidret)
*uidret = ILLEGAL_UID;