We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
stat64_ignore_enoent
1 parent 2675626 commit 2b9987fCopy full SHA for 2b9987f
project/libfuse-fs/src/overlayfs/mod.rs
@@ -168,7 +168,7 @@ impl RealInode {
168
Ok(v1) => Ok(Some(v1)),
169
Err(e) => match e.raw_os_error() {
170
Some(raw_error) => {
171
- if raw_error != libc::ENOENT || raw_error != libc::ENAMETOOLONG {
+ if raw_error == libc::ENOENT || raw_error == libc::ENAMETOOLONG {
172
return Ok(None);
173
}
174
Err(e)
project/libfuse-fs/src/unionfs/mod.rs
0 commit comments