common_lock_node() now pretends to be successful - this should fix Vision not being

able to store its settings for now (bug #589).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17505 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-05-19 08:54:50 +00:00
parent 3652a43917
commit 4b25b1b99a
+4 -2
View File
@@ -4191,7 +4191,8 @@ static status_t
common_lock_node(int fd, bool kernel)
{
// TODO: Implement!
return EOPNOTSUPP;
//return EOPNOTSUPP;
return B_OK;
}
@@ -4199,7 +4200,8 @@ static status_t
common_unlock_node(int fd, bool kernel)
{
// TODO: Implement!
return EOPNOTSUPP;
//return EOPNOTSUPP;
return B_OK;
}