* mount.cc (mount_info::from_fstab): Change system_printf to

debug_printf on NtOpenFile failure.
This commit is contained in:
Corinna Vinschen 2008-07-24 18:32:41 +00:00
parent 520fcc9747
commit e0fa82235a
2 changed files with 6 additions and 1 deletions

View File

@ -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>
* shared.cc (user_shared_initialize): Fetch potentially changed Cygwin

View File

@ -734,7 +734,7 @@ mount_info::from_fstab (bool user, WCHAR fstab[], PWCHAR fstab_end)
FILE_SHARE_VALID_FLAGS, FILE_SYNCHRONOUS_IO_NONALERT);
if (!NT_SUCCESS (status))
{
system_printf ("NtOpenFile(%S) failed, %p", &upath, status);
debug_printf ("NtOpenFile(%S) failed, %p", &upath, status);
return false;
}