From: Damien Miller Date: Wed, 24 Jun 2015 23:51:39 +0000 (+1000) Subject: add missing pselect6 X-Git-Tag: V_6_9_P1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc20205c91c9920361d12b15d253d4997dba494a;p=thirdparty%2Fopenssh-portable.git add missing pselect6 patch from Jakub Jelen --- 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