* Don't let GuestNode::Init() fail if the attribute directory could not be
opened; not all file systems support this. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30654 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -529,8 +529,9 @@ public:
|
||||
|
||||
// open the attribute directory
|
||||
fAttrDir = _kern_open_attr_dir(fd, NULL);
|
||||
if (fAttrDir < 0)
|
||||
return fAttrDir;
|
||||
if (fAttrDir < 0) {
|
||||
// TODO: check if the file system supports attributes, and fail
|
||||
}
|
||||
|
||||
return FSSH_B_OK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user