From: Evan Hunt Date: Mon, 16 Jun 2014 20:52:17 +0000 (-0700) Subject: [master] seccomp also needs dup() in the --disable-threads case X-Git-Tag: v9.11.0a1~1535 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=e3468c905263e06847c200524637b42e43826d54;p=thirdparty%2Fbind9.git [master] seccomp also needs dup() in the --disable-threads case --- diff --git a/bin/named/include/named/seccomp.h b/bin/named/include/named/seccomp.h index 2b3c0a8ca3c..90c33e89285 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__ */