From: Auke Kok Date: Sat, 11 May 2013 20:35:38 +0000 (-0700) Subject: Re-indent with spaces. X-Git-Tag: v205~258 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a41f47abd349b55fc4077fbb69d5da7eb6663668;p=thirdparty%2Fsystemd.git Re-indent with spaces. --- diff --git a/src/core/condition.c b/src/core/condition.c index 16cae6d23b6..abed4e5bf07 100644 --- a/src/core/condition.c +++ b/src/core/condition.c @@ -162,10 +162,10 @@ static bool test_security(const char *parameter) { if (streq(parameter, "selinux")) return is_selinux_enabled() > 0; #endif - if (streq(parameter, "apparmor")) - return access("/sys/kernel/security/apparmor/", F_OK) == 0; - if (streq(parameter, "smack")) - return access("/sys/fs/smackfs", F_OK) == 0; + if (streq(parameter, "apparmor")) + return access("/sys/kernel/security/apparmor/", F_OK) == 0; + if (streq(parameter, "smack")) + return access("/sys/fs/smackfs", F_OK) == 0; return false; }