diff options
Diffstat (limited to 'sandbox-seccomp-filter.c')
-rw-r--r-- | sandbox-seccomp-filter.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index 2f73067e1..c0c17c2fc 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c | |||
@@ -98,6 +98,9 @@ static const struct sock_filter preauth_insns[] = { | |||
98 | SC_ALLOW(read), | 98 | SC_ALLOW(read), |
99 | SC_ALLOW(write), | 99 | SC_ALLOW(write), |
100 | SC_ALLOW(close), | 100 | SC_ALLOW(close), |
101 | #ifdef __NR_shutdown /* not defined on archs that go via socketcall(2) */ | ||
102 | SC_ALLOW(shutdown), | ||
103 | #endif | ||
101 | SC_ALLOW(brk), | 104 | SC_ALLOW(brk), |
102 | SC_ALLOW(poll), | 105 | SC_ALLOW(poll), |
103 | #ifdef __NR__newselect | 106 | #ifdef __NR__newselect |