diff options
| -rw-r--r-- | man2/seccomp.2 | 4 |
1 files changed, 2 insertions, 2 deletions
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 = { |
