aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/audit.h
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2017-09-01 09:44:57 -0400
committerPaul Moore <paul@paul-moore.com>2017-11-10 16:07:54 -0500
commitb3b4fdf6a8ae9ea51ea274e3f2f8a6a58b98cc0b (patch)
treecd3af40b2208c29c162dd03655f4d3b5e2622ea5 /kernel/audit.h
parentaudit: don't use simple_strtol() anymore (diff)
downloadlinux-dev-b3b4fdf6a8ae9ea51ea274e3f2f8a6a58b98cc0b.tar.xz
linux-dev-b3b4fdf6a8ae9ea51ea274e3f2f8a6a58b98cc0b.zip
audit: convert audit_ever_enabled to a boolean
We were treating it as a boolean, let's make it a boolean to help avoid future mistakes. Reviewed-by: Richard Guy Briggs <rgb@redhat.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/audit.h')
-rw-r--r--kernel/audit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.h b/kernel/audit.h
index b331d9b83f63..6bdaf6bd377e 100644
--- a/kernel/audit.h
+++ b/kernel/audit.h
@@ -208,7 +208,7 @@ struct audit_context {
struct audit_proctitle proctitle;
};
-extern u32 audit_ever_enabled;
+extern bool audit_ever_enabled;
extern void audit_copy_inode(struct audit_names *name,
const struct dentry *dentry,