From c8ae0291ae5c107d1cb4d0ae1027ef8d319ce3fd Mon Sep 17 00:00:00 2001 From: valoq Date: Mon, 18 Sep 2023 20:08:15 +0200 Subject: [PATCH] add ERRNO for fchmodat2 --- zathura/seccomp-filters.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c index 6c5a9ea..96d98ab 100644 --- a/zathura/seccomp-filters.c +++ b/zathura/seccomp-filters.c @@ -343,6 +343,10 @@ seccomp_enable_strict_filter(zathura_t* zathura) #ifdef __NR_readfile ERRNO_RULE(readfile); #endif +#ifdef __NR_fchmodat2 + ERRNO_RULE(fchmodat2); +#endif +