* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Remove file
attribute check already done in NtSetAttributesFile.
This commit is contained in:
@@ -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>
|
2009-07-15 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* globals.cc: Reorder constant UNICODE_STRINGs for clarity.
|
* globals.cc: Reorder constant UNICODE_STRINGs for clarity.
|
||||||
|
@@ -845,8 +845,7 @@ fhandler_disk_file::fchmod (mode_t mode)
|
|||||||
if (S_ISSOCK (mode))
|
if (S_ISSOCK (mode))
|
||||||
pc |= (DWORD) FILE_ATTRIBUTE_SYSTEM;
|
pc |= (DWORD) FILE_ATTRIBUTE_SYSTEM;
|
||||||
|
|
||||||
status = NtSetAttributesFile (get_handle (), pc.file_attributes ()
|
status = NtSetAttributesFile (get_handle (), pc.file_attributes ());
|
||||||
?: FILE_ATTRIBUTE_NORMAL);
|
|
||||||
/* Correct NTFS security attributes have higher priority */
|
/* Correct NTFS security attributes have higher priority */
|
||||||
if (!pc.has_acls ())
|
if (!pc.has_acls ())
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user