* Changed the error return by bfs_link() to B_NOT_SUPPORTED.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27501 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-09-14 10:39:29 +00:00
parent 4722f139ea
commit dea4ee1980

View File

@ -919,8 +919,7 @@ bfs_link(fs_volume* _volume, fs_vnode* dir, const char* name, fs_vnode* node)
FUNCTION_START(("name = \"%s\"\n", name));
// This one won't be implemented in a binary compatible BFS
return B_ERROR;
return B_NOT_SUPPORTED;
}