summary refs log tree commit diff
path: root/security/selinux/netlabel.c
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2008-04-18 17:38:23 -0400
committerJames Morris <jmorris@namei.org>2008-04-21 19:05:04 +1000
commita6aaafeecca7ea1ddb5d7dac09e468ae14751fcd (patch)
tree15b33a43a2d6335b2d7c72b131e614d547f7f195 /security/selinux/netlabel.c
parent338366cbba686a06f9e17f33c31d533901e8639f (diff)
downloadlinux-a6aaafeecca7ea1ddb5d7dac09e468ae14751fcd.tar.gz
SELinux: netlabel.c whitespace, syntax, and static declaraction cleanups
This patch changes netlabel.c to fix whitespace and syntax issues.  Things that
are fixed may include (does not not have to include)

whitespace at end of lines
spaces followed by tabs
spaces used instead of tabs
spacing around parenthesis
locateion of { around struct and else clauses
location of * in pointer declarations
removal of initialization of static data to keep it in the right section
useless {} in if statemetns
useless checking for NULL before kfree
fixing of the indentation depth of switch statements
and any number of other things I forgot to mention

Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/selinux/netlabel.c')
-rw-r--r--security/selinux/netlabel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/netlabel.c b/security/selinux/netlabel.c
index e8ee91ac12ef..89b418392f11 100644
--- a/security/selinux/netlabel.c
+++ b/security/selinux/netlabel.c
@@ -118,7 +118,7 @@ void selinux_netlbl_cache_invalidate(void)
 void selinux_netlbl_sk_security_reset(struct sk_security_struct *ssec,
 				      int family)
 {
-        if (family == PF_INET)
+	if (family == PF_INET)
 		ssec->nlbl_state = NLBL_REQUIRE;
 	else
 		ssec->nlbl_state = NLBL_UNSET;