diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-01-28 21:38:14 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-01-29 13:42:06 +0100 |
commit | 373f14222e6ff11ad0b129b033e01f75f7c504f3 (patch) | |
tree | 0428d9e54061dd0e44e3f15b56c1fb349de03255 /src/bus-proxyd/bus-proxyd.c | |
parent | 38180c856898d352fca38ce85d55f2d89cf8be97 (diff) |
bus: fake security labels again
(The kernel module got fixed, so let's reenable this again)
Diffstat (limited to 'src/bus-proxyd/bus-proxyd.c')
-rw-r--r-- | src/bus-proxyd/bus-proxyd.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/bus-proxyd/bus-proxyd.c b/src/bus-proxyd/bus-proxyd.c index ca2a2ab44d..b03845921f 100644 --- a/src/bus-proxyd/bus-proxyd.c +++ b/src/bus-proxyd/bus-proxyd.c @@ -465,11 +465,10 @@ int main(int argc, char *argv[]) { a->fake_creds_valid = true; } - /* FIXME: faking security labels is broken in kdbus right now */ - /* if (peersec) { */ - /* a->fake_label = peersec; */ - /* peersec = NULL; */ - /* } */ + if (peersec) { + a->fake_label = peersec; + peersec = NULL; + } a->manual_peer_interface = true; |