mirror of
https://github.com/SELinuxProject/selinux
synced 2025-02-03 19:32:15 +00:00
checkpolicy: add missing ; to attribute_role_def
The commit to add role attributes forgot a ; in policy_parse.y for attribute_role_def. Add the missing ; Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Dan Walsh <dwalsh@redhat.com>
This commit is contained in:
parent
d72a9ec825
commit
5619635063
@ -423,6 +423,7 @@ neverallow_def : NEVERALLOW names names ':' names names ';'
|
|||||||
;
|
;
|
||||||
attribute_role_def : ATTRIBUTE_ROLE identifier ';'
|
attribute_role_def : ATTRIBUTE_ROLE identifier ';'
|
||||||
{if (define_attrib_role()) return -1; }
|
{if (define_attrib_role()) return -1; }
|
||||||
|
;
|
||||||
role_type_def : ROLE identifier TYPES names ';'
|
role_type_def : ROLE identifier TYPES names ';'
|
||||||
{if (define_role_types()) return -1;}
|
{if (define_role_types()) return -1;}
|
||||||
;
|
;
|
||||||
|
Loading…
Reference in New Issue
Block a user