diff options
author | Paul Moore <paul@paul-moore.com> | 2023-12-21 17:18:46 -0500 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2023-12-22 18:09:26 -0500 |
commit | bb4e5993f1d5d9620b267a6a1ad345353860de6a (patch) | |
tree | ac9ce64300de1a0f7c043edf1be253316e153ea4 /security | |
parent | bdaaf515ba8f38af6443d2e94ea3c7f502fe1b0e (diff) |
selinux: align avc_has_perm_noaudit() prototype with definition
A trivial correction to convert an 'unsigned' parameter into an
'unsigned int' parameter so the prototype matches the function
definition.
I really thought that someone submitted a patch for this a few years
ago but sadly I can't find it now.
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/include/avc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/include/avc.h b/security/selinux/include/avc.h index eadae219fa78..96a614d47df8 100644 --- a/security/selinux/include/avc.h +++ b/security/selinux/include/avc.h @@ -131,7 +131,7 @@ static inline int avc_audit(u32 ssid, u32 tsid, u16 tclass, u32 requested, #define AVC_STRICT 1 /* Ignore permissive mode. */ #define AVC_EXTENDED_PERMS 2 /* update extended permissions */ int avc_has_perm_noaudit(u32 ssid, u32 tsid, u16 tclass, u32 requested, - unsigned flags, struct av_decision *avd); + unsigned int flags, struct av_decision *avd); int avc_has_perm(u32 ssid, u32 tsid, u16 tclass, u32 requested, struct common_audit_data *auditdata); |