aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2020-01-22 05:23:50 +0100
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-01-22 05:23:50 +0100
commitc98fe9f8ad12f1457fc80377afdc5b84f98b65e0 (patch)
treef7a440fd2621117503360aed8b1e083a6f4fc04a
parentb386cee3446e164483fd3de6d3b98f23f31b4059 (diff)
downloadman-pages-c98fe9f8ad12f1457fc80377afdc5b84f98b65e0.tar.gz
seccomp.2: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man2/seccomp.22
1 files changed, 1 insertions, 1 deletions
diff --git a/man2/seccomp.2 b/man2/seccomp.2
index f7483df440..700edf1cbb 100644
--- a/man2/seccomp.2
+++ b/man2/seccomp.2
@@ -1057,7 +1057,7 @@ install_filter(int syscall_nr, int t_arch, int f_errno)
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, syscall_nr, 0, 1),
/* [5] Matching architecture and system call: don't execute
- the system call, and return 'f_errno' in 'errno' */
+ the system call, and return 'f_errno' in 'errno' */
BPF_STMT(BPF_RET | BPF_K,
SECCOMP_RET_ERRNO | (f_errno & SECCOMP_RET_DATA)),