2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-22 01:57:43 +00:00

allow profile name following profile keyword to be any valid name. NOTE: this breaks namespaces currently

This commit is contained in:
John Johansen 2008-05-22 09:16:46 +00:00
parent 39f20fd3b1
commit c207df96bb

View File

@ -329,6 +329,9 @@ LT_EQUAL <=
PDEBUG("Found id: \"%s\"\n", yylval);
return TOK_ID;
break;
case TOK_PROFILE:
BEGIN(SUB_NAME);
break;
case TOK_FLAGS:
BEGIN(FLAGS_MODE);
break;