mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-23 04:00:49 +08:00
Merge pull request #106 from trapexit/epmfs-fix
fix epmfs failing to pick the existing path. closes #102
This commit is contained in:
commit
cac5f1b827
|
@ -129,6 +129,7 @@ _epmfs_create(const vector<string> &basepaths,
|
|||
fsblkcnt_t mfs;
|
||||
string mfsbasepath;
|
||||
string epmfsbasepath;
|
||||
string fullpath;
|
||||
|
||||
mfs = 0;
|
||||
epmfs = 0;
|
||||
|
@ -137,7 +138,9 @@ _epmfs_create(const vector<string> &basepaths,
|
|||
int rv;
|
||||
const string &basepath = basepaths[i];
|
||||
|
||||
rv = _try_statvfs(basepath,fusepath,epmfs,epmfsbasepath,mfs,mfsbasepath);
|
||||
fullpath = fs::path::make(basepath,fusepath);
|
||||
|
||||
rv = _try_statvfs(basepath,fullpath,epmfs,epmfsbasepath,mfs,mfsbasepath);
|
||||
if(rv == -1)
|
||||
_try_statvfs(basepath,mfs,mfsbasepath);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user