summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-02-10 21:50:29 +0000
committerGitHub <noreply@github.com>2023-02-10 21:50:29 +0000
commitb2318f98d31ff96bcd8f85910766a48638c16622 (patch)
treeaf6224b5a74d38e807bafc43159f01729a7eca92 /src
parent2a4012836c5372e0bc7212ff1907e96a31f66c52 (diff)
parente458f5f093c18b590750e8fd8fd3baa8cdaaf52d (diff)
downloadnix-b2318f98d31ff96bcd8f85910766a48638c16622.zip
Merge #1995
1995: Add `AT_EACCESS` to `AtFlags` on all platforms r=asomers a=MatteoNardi On Linux, I need the `AT_EACCESS` flag for `faccessat`: ``` AT_EACCESS Perform access checks using the effective user and group IDs. By default, faccessat() uses the real IDs (like access()). ``` ~~This commit is enabling it for all platforms but redox. I'm not really sure if this is correct of I should have just added a target_os = "linux". A did quick git grep -e AT_EACCESS -e 'AT_REMOVEDIR' on libc and it showed they're available on the same targets, so for consistence I just removed the cfg limitation.~~ CI was helpful and showed me I was wrong: it's undefined on android. Co-authored-by: Matteo Nardi <matteo@exein.io>
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;
}
}