1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-27 18:55:40 +03:00

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.
This commit is contained in:
Lennart Poettering 2011-04-03 22:18:35 +02:00
parent 69528c31c6
commit d24e1b4806
2 changed files with 2 additions and 2 deletions

View File

@ -634,7 +634,7 @@
may be used to check whether the given security
module is enabled on the system.
Currently the only recognized value is
<varname>SELinux</varname>.
<varname>selinux</varname>.
The test may be negated by prepending an
exclamation mark. Finally,
<varname>ConditionNull=</varname> may

View File

@ -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;