* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Remove file
attribute check already done in NtSetAttributesFile.
This commit is contained in:
parent
fc261e53f0
commit
76cf56714e
|
@ -1,3 +1,8 @@
|
|||
2009-07-16 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Remove file
|
||||
attribute check already done in NtSetAttributesFile.
|
||||
|
||||
2009-07-15 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* globals.cc: Reorder constant UNICODE_STRINGs for clarity.
|
||||
|
|
|
@ -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 ())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue