mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-01-21 15:19:46 +08:00
Merge pull request #843 from trapexit/policyfixes
msp policies: used wrong path to check existance
This commit is contained in:
commit
2d8fab534a
|
@ -42,7 +42,6 @@ namespace msplfs
|
|||
{
|
||||
int rv;
|
||||
uint64_t lfs;
|
||||
string fusepath;
|
||||
fs::info_t info;
|
||||
const Branch *branch;
|
||||
const string *basepath;
|
||||
|
@ -55,7 +54,7 @@ namespace msplfs
|
|||
|
||||
if(branch->ro_or_nc())
|
||||
error_and_continue(*err_,EROFS);
|
||||
if(!fs::exists(branch->path,fusepath))
|
||||
if(!fs::exists(branch->path,fusepath_))
|
||||
error_and_continue(*err_,ENOENT);
|
||||
rv = fs::info(branch->path,&info);
|
||||
if(rv == -1)
|
||||
|
|
|
@ -42,7 +42,6 @@ namespace msplus
|
|||
{
|
||||
int rv;
|
||||
uint64_t lus;
|
||||
string fusepath;
|
||||
fs::info_t info;
|
||||
const Branch *branch;
|
||||
const string *basepath;
|
||||
|
@ -55,7 +54,7 @@ namespace msplus
|
|||
|
||||
if(branch->ro_or_nc())
|
||||
error_and_continue(*err_,EROFS);
|
||||
if(!fs::exists(branch->path,fusepath))
|
||||
if(!fs::exists(branch->path,fusepath_))
|
||||
error_and_continue(*err_,ENOENT);
|
||||
rv = fs::info(branch->path,&info);
|
||||
if(rv == -1)
|
||||
|
|
|
@ -42,7 +42,6 @@ namespace mspmfs
|
|||
{
|
||||
int rv;
|
||||
uint64_t mfs;
|
||||
string fusepath;
|
||||
fs::info_t info;
|
||||
const Branch *branch;
|
||||
const string *basepath;
|
||||
|
@ -55,7 +54,7 @@ namespace mspmfs
|
|||
|
||||
if(branch->ro_or_nc())
|
||||
error_and_continue(*err_,EROFS);
|
||||
if(!fs::exists(branch->path,fusepath))
|
||||
if(!fs::exists(branch->path,fusepath_))
|
||||
error_and_continue(*err_,ENOENT);
|
||||
rv = fs::info(branch->path,&info);
|
||||
if(rv == -1)
|
||||
|
|
Loading…
Reference in New Issue
Block a user