diff options
author | Eric Paris <eparis@redhat.com> | 2008-04-23 01:46:13 +0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-04-28 03:29:03 +0400 |
commit | 81fa42df78511e3bdbc0ea545990bda6a5b3e7de (patch) | |
tree | ba0df8fd9d7542224ef83d2778550291c0ab3139 /security | |
parent | ccb3cbeb4f285a02103ded5298850a21e7028ba4 (diff) | |
download | linux-81fa42df78511e3bdbc0ea545990bda6a5b3e7de.tar.xz |
SELinux: context.h whitespace, syntax, and other cleanups
This patch changes context.h to fix whitespace and syntax issues. Things that
are fixed may include (does not not have to include)
include spaces around , in function calls
Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/ss/context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/selinux/ss/context.h b/security/selinux/ss/context.h index 2eee0dab524d..b9a6f7fc62fc 100644 --- a/security/selinux/ss/context.h +++ b/security/selinux/ss/context.h @@ -84,9 +84,9 @@ static inline int mls_context_cmp(struct context *c1, struct context *c2) return 1; return ((c1->range.level[0].sens == c2->range.level[0].sens) && - ebitmap_cmp(&c1->range.level[0].cat,&c2->range.level[0].cat) && + ebitmap_cmp(&c1->range.level[0].cat, &c2->range.level[0].cat) && (c1->range.level[1].sens == c2->range.level[1].sens) && - ebitmap_cmp(&c1->range.level[1].cat,&c2->range.level[1].cat)); + ebitmap_cmp(&c1->range.level[1].cat, &c2->range.level[1].cat)); } static inline void mls_context_destroy(struct context *c) |