public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin/main] Cygwin: fhandler_base::fstat_by_name: improve debug output.
@ 2024-04-04 16:24 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2024-04-04 16:24 UTC (permalink / raw)
  To: cygwin-cvs

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

commit 38b51398359076eed01d8f1b0f9c061d16a658f5
Author:     Corinna Vinschen <corinna@vinschen.de>
AuthorDate: Thu Apr 4 18:20:28 2024 +0200
Commit:     Corinna Vinschen <corinna@vinschen.de>
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 <corinna@vinschen.de>

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;
 	}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-04-04 16:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-04 16:24 [newlib-cygwin/main] Cygwin: fhandler_base::fstat_by_name: improve debug output Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).