Align all filesystem relevant places to use B_UNSUPPORTED for unsupported

instead of a mix of B_NOT_SUPPORTED and B_UNSUPPORTED. This allows checking for
a specific error code. Probably one of those should be phased out...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43025 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2011-10-31 10:18:03 +00:00
parent 988cfaca32
commit a735bdebb9
9 changed files with 46 additions and 46 deletions
@@ -1030,7 +1030,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_NOT_SUPPORTED;
return B_UNSUPPORTED;
}