diff options
author | Chris Wright <chrisw@osdl.org> | 2005-05-11 10:52:45 +0100 |
---|---|---|
committer | David Woodhouse <dwmw2@shinybook.infradead.org> | 2005-05-11 10:52:45 +0100 |
commit | 804a6a49d874841a98ebea3247ad2e672812ad6a (patch) | |
tree | 84bd717927666811d55f31346387f8cb99dff346 /kernel/auditsc.c | |
parent | 5a241d77039a2632e81070619d5733258728f8bd (diff) | |
download | linux-804a6a49d874841a98ebea3247ad2e672812ad6a.tar.gz linux-804a6a49d874841a98ebea3247ad2e672812ad6a.tar.bz2 linux-804a6a49d874841a98ebea3247ad2e672812ad6a.zip |
Audit requires CONFIG_NET
Audit now actually requires netlink. So make it depend on CONFIG_NET,
and remove the inline dependencies on CONFIG_NET.
Signed-off-by: Chris Wright <chrisw@osdl.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r-- | kernel/auditsc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index f1bf66510cd3..680bb928343b 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c @@ -226,7 +226,6 @@ static inline int audit_del_rule(struct audit_rule *rule, return -EFAULT; /* No matching rule */ } -#ifdef CONFIG_NET /* Copy rule from user-space to kernel-space. Called during * AUDIT_ADD. */ static int audit_copy_rule(struct audit_rule *d, struct audit_rule *s) @@ -305,7 +304,6 @@ int audit_receive_filter(int type, int pid, int uid, int seq, void *data, return err; } -#endif /* Compare a task_struct with an audit_rule. Return 1 on match, 0 * otherwise. */ |