* 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.
This commit is contained in:
Corinna Vinschen
2007-08-16 14:46:23 +00:00
parent dec9daad4a
commit 29fec364c0
5 changed files with 18 additions and 10 deletions

View File

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