* fhandler.cc (fhandler_base::open): Fix previous patch to handle the
SYSTEM attribute as well.
This commit is contained in:
parent
2525dd2eab
commit
902716e599
@ -1,3 +1,8 @@
|
|||||||
|
2006-11-28 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* fhandler.cc (fhandler_base::open): Fix previous patch to handle the
|
||||||
|
SYSTEM attribute as well.
|
||||||
|
|
||||||
2006-11-27 Corinna Vinschen <corinna@vinschen.de>
|
2006-11-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* fhandler.cc (fhandler_base::open): Fix handling of files with
|
* fhandler.cc (fhandler_base::open): Fix handling of files with
|
||||||
|
@ -685,10 +685,11 @@ fhandler_base::open (int flags, mode_t mode)
|
|||||||
file_attributes |= FILE_ATTRIBUTE_HIDDEN;
|
file_attributes |= FILE_ATTRIBUTE_HIDDEN;
|
||||||
#endif
|
#endif
|
||||||
/* Starting with Windows 2000, when trying to overwrite an already
|
/* Starting with Windows 2000, when trying to overwrite an already
|
||||||
existing file with FILE_ATTRIBUTE_HIDDEN attribute set, CreateFile
|
existing file with FILE_ATTRIBUTE_HIDDEN and/or FILE_ATTRIBUTE_SYSTEM
|
||||||
fails with "Permission denied". Per MSDN you have to create the
|
attribute set, CreateFile fails with ERROR_ACCESS_DENIED.
|
||||||
file with the same attributes as already specified for the file. */
|
Per MSDN you have to create the file with the same attributes as
|
||||||
if (exists () && has_attribute (FILE_ATTRIBUTE_HIDDEN))
|
already specified for the file. */
|
||||||
|
if (has_attribute (FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM))
|
||||||
file_attributes |= pc.file_attributes ();
|
file_attributes |= pc.file_attributes ();
|
||||||
|
|
||||||
/* If the file should actually be created and ntsec is on,
|
/* If the file should actually be created and ntsec is on,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user