mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
Fixup a type-mismatch that happened to not cause crashes purely by
coincidence.
This commit is contained in:
parent
6c14a6b273
commit
f13d422be0
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ static void __any_regex(const void *nodep, const VISIT value,
|
|||
if (value == preorder || value == endorder)
|
||||
return;
|
||||
|
||||
if (any_regex_entries(*t)) {
|
||||
if (any_regex_entries((*t)->entries)) {
|
||||
PERROR(_("ERROR profile %s contains policy elements not usable with this kernel:\n"
|
||||
"\t'*', '?', character ranges, and alternations are not allowed.\n"
|
||||
"\t'**' may only be used at the end of a rule.\n"),
|
||||
|
|
Loading…
Add table
Reference in a new issue