Skip to content

Commit

Permalink
AUDIT: Fix compile error in audit_filter_syscall
Browse files Browse the repository at this point in the history
We didn't rename it to audit_tgid after all. Except once... Doh.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
David Woodhouse committed Jul 14, 2005
1 parent f556196 commit 351bb72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/auditsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 351bb72

Please sign in to comment.