mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
Merge from origin/emacs-28
0090318c61* lib-src/seccomp-filter.c (main): Use faccessat2 only if ...3bb01a499bFix regression in derived-mode-init-mode-variables
This commit is contained in:
commit
200627c255
2 changed files with 3 additions and 1 deletions
|
|
@ -240,7 +240,9 @@ main (int argc, char **argv)
|
|||
should be further restricted using mount namespaces. */
|
||||
RULE (SCMP_ACT_ALLOW, SCMP_SYS (access));
|
||||
RULE (SCMP_ACT_ALLOW, SCMP_SYS (faccessat));
|
||||
#ifdef __NR_faccessat2
|
||||
RULE (SCMP_ACT_ALLOW, SCMP_SYS (faccessat2));
|
||||
#endif
|
||||
RULE (SCMP_ACT_ALLOW, SCMP_SYS (stat));
|
||||
RULE (SCMP_ACT_ALLOW, SCMP_SYS (stat64));
|
||||
RULE (SCMP_ACT_ALLOW, SCMP_SYS (lstat));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue