diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-08-16 14:46:23 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-08-16 14:46:23 +0000 |
commit | 29fec364c0ccf362af6cc232dbc2f3cbf3ec877e (patch) | |
tree | 6bbe10c420a48132dd90bc8ca1e9f5fb3fe2be6c /winsup/cygwin/syscalls.cc | |
parent | dec9daad4a6b6f5f705f8e637d21e9e035d08218 (diff) | |
download | newlib-29fec364c0ccf362af6cc232dbc2f3cbf3ec877e.zip newlib-29fec364c0ccf362af6cc232dbc2f3cbf3ec877e.tar.gz newlib-29fec364c0ccf362af6cc232dbc2f3cbf3ec877e.tar.bz2 |
* dir.cc (readdir_worker): Convert w32name to PUNICODE_STRING.
* sec_acl.cc (getacl): Convert debug output to print native NT path.
* security.cc (set_file_attribute): Ditto.
* syscalls.cc (try_to_bin): Ditto and fix buggy debug statement.
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r-- | winsup/cygwin/syscalls.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc index 8e1c979..63df37e 100644 --- a/winsup/cygwin/syscalls.cc +++ b/winsup/cygwin/syscalls.cc @@ -358,8 +358,8 @@ try_to_bin (path_conv &win32_path, HANDLE h) FileRenameInformation); } if (!NT_SUCCESS (status)) - debug_printf ("Move %s to %s failed, status = %p", win32_path.get_win32 (), - recycler, status); + debug_printf ("Move %S to %S failed, status = %p", + win32_path.get_nt_native_path (), &recycler, status); out: if (rootdir) NtClose (rootdir); |