Don't error when trying to change owner/group of root dir, instead just ignore it

This commit is contained in:
Sebastian Messmer 2018-04-18 00:24:41 -07:00
parent 706ef263c9
commit b0077e7a81
1 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ void CryNode::chmod(mode_t mode) {
if (_parent == none) {
//We are the root direcory.
//TODO What should we do?
throw FuseErrnoException(EIO);
return;
}
(*_parent)->chmodChild(_blockId, mode);
}
@ -195,7 +195,7 @@ void CryNode::chown(uid_t uid, gid_t gid) {
if (_parent == none) {
//We are the root direcory.
//TODO What should we do?
throw FuseErrnoException(EIO);
return;
}
(*_parent)->chownChild(_blockId, uid, gid);
}