From dc92e62c6c34f242aa54aa187e50a94ed7695c51 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 13 Jun 2014 12:39:58 +0200 Subject: condition: minor modernizations --- src/core/condition.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/core/condition.c') diff --git a/src/core/condition.c b/src/core/condition.c index 24684580a8..833bcdf302 100644 --- a/src/core/condition.c +++ b/src/core/condition.c @@ -27,7 +27,7 @@ #include #include -#include +#include "sd-id128.h" #include "util.h" #include "condition.h" #include "virt.h" @@ -52,12 +52,13 @@ static bool condition_test_security(Condition *c) { return use_ima() == !c->negate; if (streq(c->parameter, "smack")) return use_smack() == !c->negate; + return c->negate; } static bool condition_test_capability(Condition *c) { + _cleanup_fclose_ FILE *f = NULL; cap_value_t value; - FILE *f; char line[LINE_MAX]; unsigned long long capabilities = -1; @@ -86,8 +87,6 @@ static bool condition_test_capability(Condition *c) { } } - fclose(f); - return !!(capabilities & (1ULL << value)) == !c->negate; } -- cgit v1.2.3-54-g00ecf