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:
Dan Walsh 2011-08-09 10:28:38 -04:00 committed by Eric Paris
parent d72a9ec825
commit 5619635063

View File

@ -423,6 +423,7 @@ neverallow_def : NEVERALLOW names names ':' names names ';'
;
attribute_role_def : ATTRIBUTE_ROLE identifier ';'
{if (define_attrib_role()) return -1; }
;
role_type_def : ROLE identifier TYPES names ';'
{if (define_role_types()) return -1;}
;