mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-23 02:59:00 +08:00
fuse_open.cpp
This commit is contained in:
parent
b80bf8fa7e
commit
4fd4e6ac30
|
@ -270,15 +270,6 @@ namespace l
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr
|
|
||||||
const
|
|
||||||
uint64_t
|
|
||||||
_(const PassthroughEnum e_,
|
|
||||||
const uint64_t m_)
|
|
||||||
{
|
|
||||||
return ((((uint64_t)e_) << 32) | (m_ & O_ACCMODE));
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace FUSE
|
namespace FUSE
|
||||||
{
|
{
|
||||||
int
|
int
|
||||||
|
@ -339,7 +330,13 @@ namespace FUSE
|
||||||
if(rv != 0)
|
if(rv != 0)
|
||||||
return rv;
|
return rv;
|
||||||
|
|
||||||
return l::passthrough(fc,ffi_);
|
rv = l::passthrough(fc,ffi_);
|
||||||
|
if(rv != 0)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return rv;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue
Block a user