2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-22 10:07:12 +00:00

allow <= to be used instead of subset in link rules

This commit is contained in:
John Johansen 2008-04-09 09:02:51 +00:00
parent add2b93657
commit b742da7751

View File

@ -389,6 +389,7 @@ flagval: TOK_FLAG_ID
opt_subset_flag: { /* nothing */ $$ = 0; } opt_subset_flag: { /* nothing */ $$ = 0; }
| TOK_SUBSET { $$ = 1; } | TOK_SUBSET { $$ = 1; }
| TOK_LE { $$ = 1; }
opt_audit_flag: { /* nothing */ $$ = 0; } opt_audit_flag: { /* nothing */ $$ = 0; }
| TOK_AUDIT { $$ = 1; }; | TOK_AUDIT { $$ = 1; };