Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-08-16 18:46:23 +0400
committerCorinna Vinschen <corinna@vinschen.de>2007-08-16 18:46:23 +0400
commit29fec364c0ccf362af6cc232dbc2f3cbf3ec877e (patch)
tree6bbe10c420a48132dd90bc8ca1e9f5fb3fe2be6c /winsup/cygwin/sec_acl.cc
parentdec9daad4a6b6f5f705f8e637d21e9e035d08218 (diff)
* 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/sec_acl.cc')
-rw-r--r--winsup/cygwin/sec_acl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sec_acl.cc b/winsup/cygwin/sec_acl.cc
index bd967f3d9..4ba5a2c1b 100644
--- a/winsup/cygwin/sec_acl.cc
+++ b/winsup/cygwin/sec_acl.cc
@@ -391,7 +391,7 @@ getacl (HANDLE handle, path_conv &pc, int nentries, __aclent32_t *aclbufp)
aclbufp[i].a_perm &= ~(DENY_R | DENY_W | DENY_X);
aclsort32 (pos, 0, aclbufp);
}
- syscall_printf ("%d = getacl (%s)", pos, pc.get_win32 ());
+ syscall_printf ("%d = getacl (%S)", pos, pc.get_nt_native_path ());
return pos;
}