void-packages/srcpkgs/vsftpd/patches/008-allow-getrandom.patch

13 lines
276 B
Diff

--- a/seccompsandbox.c
+++ b/seccompsandbox.c
@@ -286,6 +286,9 @@
static void
seccomp_sandbox_setup_base()
{
+ /* allow getrandom. */
+ allow_nr(__NR_getrandom);
+
/* Simple reads and writes on existing descriptors. */
allow_nr(__NR_read);
allow_nr(__NR_write);