From bc20205c91c9920361d12b15d253d4997dba494a Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Thu, 25 Jun 2015 09:51:39 +1000 Subject: [PATCH] add missing pselect6 patch from Jakub Jelen --- sandbox-seccomp-filter.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index c1fe1f3e9..ef9d6fa26 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c @@ -168,6 +168,9 @@ static const struct sock_filter preauth_insns[] = { #ifdef __NR_poll SC_ALLOW(poll), #endif +#ifdef __NR_pselect6 + SC_ALLOW(pselect6), +#endif #ifdef __NR_read SC_ALLOW(read), #endif