* mount.cc (mount_info::from_fstab): Open fstab file with

FILE_OPEN_FOR_BACKUP_INTENT flag.
This commit is contained in:
Corinna Vinschen 2009-01-24 16:30:09 +00:00
parent 7d01164900
commit 01d2675aea
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-01-24 Corinna Vinschen <corinna@vinschen.de>
* mount.cc (mount_info::from_fstab): Open fstab file with
FILE_OPEN_FOR_BACKUP_INTENT flag.
2009-01-23 Corinna Vinschen <corinna@vinschen.de>
* smallprint.cc (__small_vsprintf): Use already available buffer tmp

View File

@ -943,7 +943,9 @@ mount_info::from_fstab (bool user, WCHAR fstab[], PWCHAR fstab_end)
InitializeObjectAttributes (&attr, &upath, OBJ_CASE_INSENSITIVE, NULL, NULL);
debug_printf ("Try to read mounts from %W", fstab);
status = NtOpenFile (&fh, SYNCHRONIZE | FILE_READ_DATA, &attr, &io,
FILE_SHARE_VALID_FLAGS, FILE_SYNCHRONOUS_IO_NONALERT);
FILE_SHARE_VALID_FLAGS,
FILE_SYNCHRONOUS_IO_NONALERT
| FILE_OPEN_FOR_BACKUP_INTENT);
if (!NT_SUCCESS (status))
{
debug_printf ("NtOpenFile(%S) failed, %p", &upath, status);