From: Michael Kerrisk Date: Sun, 23 Aug 2020 17:13:03 +0000 (+0200) Subject: seccomp.2: EXAMPLES: use SECCOMP_RET_KILL_PROCESS rather than SECCOMP_RET_KILL X-Git-Tag: man-pages-5.09~500 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f15ff6fa4e470e27245ca53e9037aaa62789bbf1;p=thirdparty%2Fman-pages.git seccomp.2: EXAMPLES: use SECCOMP_RET_KILL_PROCESS rather than SECCOMP_RET_KILL See previous commit. Reported-by: Rich Felker Signed-off-by: Michael Kerrisk --- diff --git a/man2/seccomp.2 b/man2/seccomp.2 index e7cdfc8f7a..d91dfe9e4b 100644 --- a/man2/seccomp.2 +++ b/man2/seccomp.2 @@ -1096,8 +1096,8 @@ install_filter(int syscall_nr, int t_arch, int f_errno) system calls */ BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_ALLOW), - /* [7] Destination of architecture mismatch: kill task */ - BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_KILL), + /* [7] Destination of architecture mismatch: kill process */ + BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS), }; struct sock_fprog prog = {