summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatteo Nardi <matteo@exein.io>2023-02-01 09:56:03 +0100
committerMatteo Nardi <matteo@exein.io>2023-02-01 10:19:13 +0100
commite458f5f093c18b590750e8fd8fd3baa8cdaaf52d (patch)
tree19dd09205b5db1f79cf7d4bfd31772cbea248986 /src
parent1a838c7e54e6b908cc96db1c4a89dc87e8958f72 (diff)
downloadnix-e458f5f093c18b590750e8fd8fd3baa8cdaaf52d.zip
Enabled `AtFlags::AT_EACCESS` on all platforms but android and redox
Diffstat (limited to 'src')
-rw-r--r--src/fcntl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fcntl.rs b/src/fcntl.rs
index 1e24f603..a9ef9ad1 100644
--- a/src/fcntl.rs
+++ b/src/fcntl.rs
@@ -35,7 +35,7 @@ libc_bitflags! {
AT_NO_AUTOMOUNT;
#[cfg(any(target_os = "android", target_os = "linux"))]
AT_EMPTY_PATH;
- #[cfg(any(target_os = "illumos", target_os = "solaris"))]
+ #[cfg(not(target_os = "android"))]
AT_EACCESS;
}
}