diff options
author | Ondrej Mosnacek <omosnace@redhat.com> | 2019-07-29 11:41:17 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2019-08-05 23:21:06 +0300 |
commit | f07ea1d4eda2574c6b0f99576db61c86ec27ff5b (patch) | |
tree | 2ca17a74559515805660fe0e3e91ee90812069bc /security/selinux/ss/policydb.h | |
parent | 2492acaf1e53a13a528e31769aa3df15b4d9f6ef (diff) | |
download | linux-f07ea1d4eda2574c6b0f99576db61c86ec27ff5b.tar.xz |
selinux: policydb - rename type_val_to_struct_array
The name is overly long and inconsistent with the other *_val_to_struct
members. Dropping the "_array" prefix makes the code easier to read and
gets rid of one line over 80 characters warning.
Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/ss/policydb.h')
-rw-r--r-- | security/selinux/ss/policydb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/ss/policydb.h b/security/selinux/ss/policydb.h index 27039149ff0a..05fc672831aa 100644 --- a/security/selinux/ss/policydb.h +++ b/security/selinux/ss/policydb.h @@ -255,7 +255,7 @@ struct policydb { struct class_datum **class_val_to_struct; struct role_datum **role_val_to_struct; struct user_datum **user_val_to_struct; - struct type_datum **type_val_to_struct_array; + struct type_datum **type_val_to_struct; /* type enforcement access vectors and transitions */ struct avtab te_avtab; |