diff options
author | Omar Polo <op@omarpolo.com> | 2021-01-17 13:51:09 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-01-17 13:51:09 +0000 |
commit | 65fba1d570390381f99396a547094f8b33f26ebf (patch) | |
tree | 51f71955b6db82c6739a33bc375df053d2c3b005 /sandbox.c | |
parent | 771d8f281baa6f15913d705365e00c3128feac8b (diff) |
[seccomp] allow also poll
on the latest fedora we glibc uses poll. On the other linux distro I
tried (void), musl is probably providing poll as a ppoll wrapper.
Diffstat (limited to 'sandbox.c')
-rw-r--r-- | sandbox.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -135,6 +135,7 @@ sandbox() /* these are used to serve the files. note how we * allow openat but not open. */ + SC_ALLOW(poll), SC_ALLOW(ppoll), SC_ALLOW(accept), SC_ALLOW(fcntl), |