Skip to content

Commit

Permalink
Treat EOPNOTSUPP the same as ENOTSUP when ignoring failed flock calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
luqmana committed Dec 1, 2021
1 parent 451a043 commit 6963df3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/cargo/util/flock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,10 @@ mod sys {

pub(super) fn error_unsupported(err: &Error) -> bool {
match err.raw_os_error() {
Some(libc::ENOTSUP) => true,
// Unfortunately, depending on the target, these may or may not be the same.
// For targets in which they are the same, the duplicate pattern causes a warning.
#[allow(unreachable_patterns)]
Some(libc::ENOTSUP | libc::EOPNOTSUPP) => true,
#[cfg(target_os = "linux")]
Some(libc::ENOSYS) => true,
_ => false,
Expand Down

0 comments on commit 6963df3

Please sign in to comment.