don't provide get_vnode_name as we don't know how to do it. just set it to NULL and let the VFS handle it.

This should fix oddities in Tracker.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20961 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2007-05-02 00:22:39 +00:00
parent 09b89797af
commit 55b368036c
1 changed files with 5 additions and 1 deletions

View File

@ -862,6 +862,10 @@ fs_write_vnode(fs_nspace *ns, fs_node *node, char r)
}
#ifdef __HAIKU__
/* no reason to do it,
* the VFS does it the best possible way for an unix fs anyway.
* so we use NULL for this call.
*/
extern int
fs_get_vnode_name(fs_nspace *ns, fs_node *node, char *buffer, size_t len)
{
@ -2441,7 +2445,7 @@ static file_system_module_info sNFSModule = {
/* vnode operations */
&fs_walk,
&fs_get_vnode_name,
NULL, // &fs_get_vnode_name,
&fs_read_vnode,
&fs_release_vnode,
&fs_remove_vnode,