elevate privileges when calling clonepath. closes #41

This commit is contained in:
Antonio SJ Musumeci
2015-01-29 14:28:38 -05:00
parent 6276ce9779
commit c2cbb93c25
4 changed files with 17 additions and 4 deletions
+4 -1
View File
@@ -70,7 +70,10 @@ _create(const fs::SearchFunc searchFunc,
return -errno;
if(createpath[0].base != existingpath[0].base)
fs::clonepath(existingpath[0].base,createpath[0].base,dirname);
{
const mergerfs::ugid::SetResetGuard ugid(0,0);
fs::clonepath(existingpath[0].base,createpath[0].base,dirname);
}
path = fs::make_path(createpath[0].base,fusepath);