Skip to content

Commit 2df8f2c

Browse files
committed
Fix typo introduced in last commit
1 parent c37eb11 commit 2df8f2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exec_ptrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ set_exec_filter(void)
11931193
# endif /* SECCOMP_AUDIT_ARCH_COMPAT */
11941194
/* Kill the process unless the (native) architecture matches. */
11951195
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, SECCOMP_AUDIT_ARCH, 1, 0),
1196-
BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS)
1196+
BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS),
11971197
/* Load syscall number into the accumulator. */
11981198
BPF_STMT(BPF_LD | BPF_W | BPF_ABS, offsetof(struct seccomp_data, nr)),
11991199
/* Jump to trace for execve(2)/execveat(2), else allow. */

0 commit comments

Comments
 (0)