From 6d99a74d1aaa0cbcb19d9ecbff50c536f5072764 Mon Sep 17 00:00:00 2001 From: valoq Date: Sat, 24 Mar 2018 16:56:19 +0100 Subject: [PATCH] add missing syscall --- zathura/seccomp-filters.c | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c index 1c49b71..53f86a2 100644 --- a/zathura/seccomp-filters.c +++ b/zathura/seccomp-filters.c @@ -155,6 +155,7 @@ seccomp_enable_strict_filter(void) ALLOW_RULE(getresgid); ALLOW_RULE(getresuid); ALLOW_RULE(getrlimit); + ALLOW_RULE(getpeername); /* ALLOW_RULE (getsockname); */ /* ALLOW_RULE (getsockopt); needed for access to x11 socket in network namespace (without abstract sockets) */ ALLOW_RULE(inotify_add_watch);