mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-09-05 08:45:22 +00:00
- pass vfsmnt param for cgroups A fix-user-audit.diff - nothing A fix-link-subset.diff - fix reporting of failed link subsets A apparmor-fix-lock-letter.diff - fix the reported lock letter in apparmorfs/matching - reverted audit request_mask back to requested_mask A apparmor-fix-sysctl-refcount.diff - fix a refcount leak in sysctl audit
16 lines
473 B
Diff
16 lines
473 B
Diff
---
|
|
security/apparmor/main.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/security/apparmor/main.c
|
|
+++ b/security/apparmor/main.c
|
|
@@ -338,7 +338,7 @@ static void aa_audit_file_mask(struct au
|
|
aa_audit_file_sub_mask(ab, other,
|
|
(mask & AA_OTHER_PERMS) >> AA_OTHER_SHIFT);
|
|
|
|
- audit_log_format(ab, " %s=\"%s::%s\"", name, user, other);
|
|
+ audit_log_format(ab, " %s=\"%s:%s\"", name, user, other);
|
|
}
|
|
|
|
static const char *address_families[] = {
|