From d24e1b4806e7e96b0c5bc0950ce79e8f76c2ab71 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 3 Apr 2011 22:18:35 +0200 Subject: condition: use 'selinux' rather than 'SELinux' as preferred spelling The virtualization condition and others use lowercase identifiers, so for the sake of keeping things least surprising, use lowercase identifiers here too. --- src/condition.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/condition.c b/src/condition.c index ee0809f76d..a520e43436 100644 --- a/src/condition.c +++ b/src/condition.c @@ -134,7 +134,7 @@ static bool test_virtualization(const char *parameter) { static bool test_security(const char *parameter) { #ifdef HAVE_SELINUX - if (!strcasecmp(parameter, "SELinux")) + if (streq(parameter, "selinux")) return is_selinux_enabled() > 0; #endif return false; -- cgit v1.2.3-54-g00ecf