diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-12-02 13:02:44 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-12-06 13:40:50 +0100 |
commit | 4e72397b00ab23607635ce6725573554f235101a (patch) | |
tree | a8b4ea16c70ba0a68d92c68149da6214946c63a5 /src/coredump | |
parent | ece877d434d3ef8ff096a6a130cfd28e6f643cd2 (diff) | |
download | systemd-4e72397b00ab23607635ce6725573554f235101a.tar.gz |
coredump,journal: do not do ACL magic for processes of dynamic UIDs
Dynamic UIDs should be treated like system users in this regard.
Diffstat (limited to 'src/coredump')
-rw-r--r-- | src/coredump/coredump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index eda7d78be2..cf56a8ad26 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -165,7 +165,7 @@ static int fix_acl(int fd, uid_t uid) { assert(fd >= 0); - if (uid_is_system(uid)) + if (uid_is_system(uid) || uid_is_dynamic(uid)) return 0; /* Make sure normal users can read (but not write or delete) |