Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 351bb722 authored by David Woodhouse's avatar David Woodhouse
Browse files

AUDIT: Fix compile error in audit_filter_syscall



We didn't rename it to audit_tgid after all. Except once... Doh.

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent f5561964
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -517,7 +517,7 @@ static enum audit_state audit_filter_syscall(struct task_struct *tsk,
	int		   word = AUDIT_WORD(ctx->major);
	int		   bit  = AUDIT_BIT(ctx->major);

	if (audit_pid && tsk->tgid == audit_tgid)
	if (audit_pid && tsk->tgid == audit_pid)
		return AUDIT_DISABLED;

	rcu_read_lock();