From e3468c905263e06847c200524637b42e43826d54 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Mon, 16 Jun 2014 13:52:17 -0700 Subject: [PATCH] [master] seccomp also needs dup() in the --disable-threads case --- bin/named/include/named/seccomp.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/named/include/named/seccomp.h b/bin/named/include/named/seccomp.h index 2b3c0a8ca3..90c33e8928 100644 --- a/bin/named/include/named/seccomp.h +++ b/bin/named/include/named/seccomp.h @@ -91,6 +91,7 @@ int scmp_syscalls[] = { SCMP_SYS(getdents), SCMP_SYS(rename), SCMP_SYS(utimes), + SCMP_SYS(dup), #endif }; const char *scmp_syscall_names[] = { @@ -153,6 +154,7 @@ const char *scmp_syscall_names[] = { "getdents", "rename", "utimes", + "dup", #endif }; #endif /* __x86_64__ */