aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/security
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-03-27 17:44:02 +0000
committerPaul Moore <paul@paul-moore.com>2020-03-30 19:57:07 -0400
commitc753924b628551564b6eea3c9896e4a95aa25ed9 (patch)
treea2ff94d46ddcb4c48a94c665b9974fb4106ddd59 /security
parentNFS: Ensure security label is set for root inode (diff)
downloadwireguard-linux-c753924b628551564b6eea3c9896e4a95aa25ed9.tar.xz
wireguard-linux-c753924b628551564b6eea3c9896e4a95aa25ed9.zip
selinux: clean up indentation issue with assignment statement
The assignment of e->type_names is indented one level too deep, clean this up by removing the extraneous tab. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security')
-rw-r--r--security/selinux/ss/policydb.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
index 932b2b9bcdb2..70ecdc78efbd 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -1219,10 +1219,9 @@ static int read_cons_helper(struct policydb *p,
if (rc)
return rc;
if (p->policyvers >=
- POLICYDB_VERSION_CONSTRAINT_NAMES) {
- e->type_names = kzalloc(sizeof
- (*e->type_names),
- GFP_KERNEL);
+ POLICYDB_VERSION_CONSTRAINT_NAMES) {
+ e->type_names = kzalloc(sizeof
+ (*e->type_names), GFP_KERNEL);
if (!e->type_names)
return -ENOMEM;
type_set_init(e->type_names);