https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=38b51398359076eed01d8f1b0f9c061d16a658f5

commit 38b51398359076eed01d8f1b0f9c061d16a658f5
Author:     Corinna Vinschen <[email protected]>
AuthorDate: Thu Apr 4 18:20:28 2024 +0200
Commit:     Corinna Vinschen <[email protected]>
CommitDate: Thu Apr 4 18:21:13 2024 +0200

    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 <[email protected]>

Diff:
---
 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 724ce7f7a587..f4c21d3b7f82 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;
        }

Reply via email to