* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Remove file
attribute check already done in NtSetAttributesFile.
This commit is contained in:
@@ -845,8 +845,7 @@ fhandler_disk_file::fchmod (mode_t mode)
|
||||
if (S_ISSOCK (mode))
|
||||
pc |= (DWORD) FILE_ATTRIBUTE_SYSTEM;
|
||||
|
||||
status = NtSetAttributesFile (get_handle (), pc.file_attributes ()
|
||||
?: FILE_ATTRIBUTE_NORMAL);
|
||||
status = NtSetAttributesFile (get_handle (), pc.file_attributes ());
|
||||
/* Correct NTFS security attributes have higher priority */
|
||||
if (!pc.has_acls ())
|
||||
{
|
||||
|
Reference in New Issue
Block a user