diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2008-01-10 04:20:52 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-02-01 14:04:59 -0500 |
commit | 0c11b9428f619ab377c92eff2f160a834a6585dd (patch) | |
tree | 35b573715ad5730a77d067486838345132771a7a /drivers/char | |
parent | 24e1c13c93cbdd05e4b7ea921c0050b036555adc (diff) |
[PATCH] switch audit_get_loginuid() to task_struct *
all callers pass something->audit_context
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tty_audit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/char/tty_audit.c b/drivers/char/tty_audit.c index d222012c1b0c..c590fc45b2fd 100644 --- a/drivers/char/tty_audit.c +++ b/drivers/char/tty_audit.c | |||
@@ -105,8 +105,7 @@ static void tty_audit_buf_push(struct task_struct *tsk, uid_t loginuid, | |||
105 | */ | 105 | */ |
106 | static void tty_audit_buf_push_current(struct tty_audit_buf *buf) | 106 | static void tty_audit_buf_push_current(struct tty_audit_buf *buf) |
107 | { | 107 | { |
108 | tty_audit_buf_push(current, audit_get_loginuid(current->audit_context), | 108 | tty_audit_buf_push(current, audit_get_loginuid(current), buf); |
109 | buf); | ||
110 | } | 109 | } |
111 | 110 | ||
112 | /** | 111 | /** |