]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
seccomp.2: ffix
authorMichael Kerrisk <mtk.manpages@gmail.com>
Wed, 22 Jan 2020 04:23:50 +0000 (05:23 +0100)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Wed, 22 Jan 2020 04:23:50 +0000 (05:23 +0100)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man2/seccomp.2

index f7483df440336c139d4a59880e692b0d2326eff6..700edf1cbbe6d82c1db96cace4be934fe9cedd4c 100644 (file)
@@ -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)),