* mount.cc (mount_info::from_fstab): Change system_printf to
debug_printf on NtOpenFile failure.
This commit is contained in:
parent
520fcc9747
commit
e0fa82235a
|
@ -1,3 +1,8 @@
|
||||||
|
2008-07-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* mount.cc (mount_info::from_fstab): Change system_printf to
|
||||||
|
debug_printf on NtOpenFile failure.
|
||||||
|
|
||||||
2008-07-24 Corinna Vinschen <corinna@vinschen.de>
|
2008-07-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* shared.cc (user_shared_initialize): Fetch potentially changed Cygwin
|
* shared.cc (user_shared_initialize): Fetch potentially changed Cygwin
|
||||||
|
|
|
@ -734,7 +734,7 @@ mount_info::from_fstab (bool user, WCHAR fstab[], PWCHAR fstab_end)
|
||||||
FILE_SHARE_VALID_FLAGS, FILE_SYNCHRONOUS_IO_NONALERT);
|
FILE_SHARE_VALID_FLAGS, FILE_SYNCHRONOUS_IO_NONALERT);
|
||||||
if (!NT_SUCCESS (status))
|
if (!NT_SUCCESS (status))
|
||||||
{
|
{
|
||||||
system_printf ("NtOpenFile(%S) failed, %p", &upath, status);
|
debug_printf ("NtOpenFile(%S) failed, %p", &upath, status);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue