From 38b51398359076eed01d8f1b0f9c061d16a658f5 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Thu, 4 Apr 2024 18:20:28 +0200 Subject: [PATCH] Cygwin: fhandler_base::fstat_by_name: improve debug output. Since we're opening the parent dir, it doesn't make sense to print the name of the file in debug output. Print parent dirname instead. Signed-off-by: Corinna Vinschen --- winsup/cygwin/fhandler/disk_file.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/winsup/cygwin/fhandler/disk_file.cc b/winsup/cygwin/fhandler/disk_file.cc index 724ce7f7a..f4c21d3b7 100644 --- a/winsup/cygwin/fhandler/disk_file.cc +++ b/winsup/cygwin/fhandler/disk_file.cc @@ -328,8 +328,7 @@ fhandler_base::fstat_by_name (struct stat *buf) | FILE_OPEN_FOR_BACKUP_INTENT | FILE_DIRECTORY_FILE); if (!NT_SUCCESS (status)) - debug_printf ("%y = NtOpenFile(%S)", status, - pc.get_nt_native_path ()); + debug_printf ("%y = NtOpenFile(%S)", status, &dirname); else { status = NtQueryDirectoryFile (dir, NULL, NULL, NULL, &io, @@ -338,8 +337,7 @@ fhandler_base::fstat_by_name (struct stat *buf) TRUE, &basename, TRUE); NtClose (dir); if (!NT_SUCCESS (status)) - debug_printf ("%y = NtQueryDirectoryFile(%S)", status, - pc.get_nt_native_path ()); + debug_printf ("%y = NtQueryDirectoryFile(%S)", status, &dirname); else ino = fdi_buf.fdi.FileId.QuadPart; } -- 2.43.5