* fhandler.h (fhandler_base::get_namehash): Use NT native path.

* fhandler_disk_file.cc (readdir_get_ino): Ditto in call to
	hash_path_name.
This commit is contained in:
Corinna Vinschen 2007-08-16 14:10:06 +00:00
parent 0abbc9f1d0
commit bd61a7f7b9
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2007-08-16 Corinna Vinschen <corinna@vinschen.de>
* fhandler.h (fhandler_base::get_namehash): Use NT native path.
* fhandler_disk_file.cc (readdir_get_ino): Ditto in call to
hash_path_name.
2007-08-16 Corinna Vinschen <corinna@vinschen.de>
* ntdll.h (RtlCreateUnicodeStringFromAsciiz): Fix declaration.

View File

@ -251,7 +251,7 @@ class fhandler_base
bool has_attribute (DWORD x) const {return pc.has_attribute (x);}
const char *get_name () const { return pc.normalized_path; }
const char *get_win32_name () { return pc.get_win32 (); }
__ino64_t get_namehash () { return namehash ?: namehash = hash_path_name (0, get_win32_name ()); }
__ino64_t get_namehash () { return namehash ?: namehash = hash_path_name (0, pc.get_nt_native_path ()); }
/* Returns name used for /proc/<pid>/fd in buf. */
virtual char *get_proc_fd_name (char *buf);

View File

@ -1682,7 +1682,7 @@ readdir_get_ino (const char *path, bool dot_dot)
ino = st.st_ino;
}
else if (!pc.hasgood_inode ())
ino = hash_path_name (0, pc);
ino = hash_path_name (0, pc.get_nt_native_path ());
else if (NT_SUCCESS (NtOpenFile (&hdl, READ_CONTROL,
pc.get_object_attr (attr, sec_none_nih),
&io, FILE_SHARE_VALID_FLAGS,