Commit 81fa42df78511e3bdbc0ea545990bda6a5b3e7de

Authored by Eric Paris
Committed by James Morris
1 parent ccb3cbeb4f

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>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

security/selinux/ss/context.h
... ... @@ -84,9 +84,9 @@
84 84 return 1;
85 85  
86 86 return ((c1->range.level[0].sens == c2->range.level[0].sens) &&
87   - ebitmap_cmp(&c1->range.level[0].cat,&c2->range.level[0].cat) &&
  87 + ebitmap_cmp(&c1->range.level[0].cat, &c2->range.level[0].cat) &&
88 88 (c1->range.level[1].sens == c2->range.level[1].sens) &&
89   - ebitmap_cmp(&c1->range.level[1].cat,&c2->range.level[1].cat));
  89 + ebitmap_cmp(&c1->range.level[1].cat, &c2->range.level[1].cat));
90 90 }
91 91  
92 92 static inline void mls_context_destroy(struct context *c)