projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ef50d0
)
apparmor: fix change_hat debug output
author
John Johansen
<john.johansen@canonical.com>
Mon, 16 Jan 2017 08:43:05 +0000
(
00:43
-0800)
committer
John Johansen
<john.johansen@canonical.com>
Mon, 16 Jan 2017 09:18:48 +0000
(
01:18
-0800)
Signed-off-by: John Johansen <john.johansen@canonical.com>
security/apparmor/procattr.c
patch
|
blob
|
history
diff --git
a/security/apparmor/procattr.c
b/security/apparmor/procattr.c
index
4cb5f3d
..
a9a9ee6
100644
(file)
--- a/
security/apparmor/procattr.c
+++ b/
security/apparmor/procattr.c
@@
-139,12
+139,13
@@
int aa_setprocattr_changehat(char *args, size_t size, int test)
for (count = 0; (hat < end) && count < 16; ++count) {
char *next = hat + strlen(hat) + 1;
hats[count] = hat;
+ AA_DEBUG("%s: (pid %d) Magic 0x%llx count %d hat '%s'\n"
+ , __func__, current->pid, token, count, hat);
hat = next;
}
- }
-
- AA_DEBUG("%s: Magic 0x%llx Hat '%s'\n",
- __func__, token, hat ? hat : NULL);
+ } else
+ AA_DEBUG("%s: (pid %d) Magic 0x%llx count %d Hat '%s'\n",
+ __func__, current->pid, token, count, "<NULL>");
return aa_change_hat(hats, count, token, test);
}