From 2df8f2ca9e9368c1549edb5f1f09cbe38f949e53 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 14 Aug 2025 17:17:07 -0600 Subject: [PATCH] Fix typo introduced in last commit --- src/exec_ptrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exec_ptrace.c b/src/exec_ptrace.c index 654874a05..9fc49ff30 100644 --- a/src/exec_ptrace.c +++ b/src/exec_ptrace.c @@ -1193,7 +1193,7 @@ set_exec_filter(void) # endif /* SECCOMP_AUDIT_ARCH_COMPAT */ /* Kill the process unless the (native) architecture matches. */ BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, SECCOMP_AUDIT_ARCH, 1, 0), - BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS) + BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS), /* Load syscall number into the accumulator. */ BPF_STMT(BPF_LD | BPF_W | BPF_ABS, offsetof(struct seccomp_data, nr)), /* Jump to trace for execve(2)/execveat(2), else allow. */