diff options
author | Ismo Puustinen <ismo.puustinen@intel.com> | 2016-01-07 23:00:04 +0100 |
---|---|---|
committer | Ismo Puustinen <ismo.puustinen@intel.com> | 2016-01-12 11:14:50 +0100 |
commit | a103496ca585e22bb5e386e3238b468d133f5659 (patch) | |
tree | 7d9b33722f54c969fc145f7d5fe31afe13aff09c /src/nspawn | |
parent | Merge pull request #2290 from vcaputo/normalize-log-source-priorities (diff) | |
download | systemd-a103496ca585e22bb5e386e3238b468d133f5659.tar.xz systemd-a103496ca585e22bb5e386e3238b468d133f5659.zip |
capabilities: keep bounding set in non-inverted format.
Change the capability bounding set parser and logic so that the bounding
set is kept as a positive set internally. This means that the set
reflects those capabilities that we want to keep instead of drop.
Diffstat (limited to 'src/nspawn')
-rw-r--r-- | src/nspawn/nspawn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index a4e13bd6aa..d619206dd6 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1482,7 +1482,7 @@ static int setup_journal(const char *directory) { } static int drop_capabilities(void) { - return capability_bounding_set_drop(~arg_retain, false); + return capability_bounding_set_drop(arg_retain, false); } static int reset_audit_loginuid(void) { |