diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-11-06 00:05:38 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-11-26 15:17:07 -0500 |
commit | cb6531bee6e6f66c3a9d85b24fed68fae7fad6ad (patch) | |
tree | 30f012bb4c5de69aa332a2a1ded85d148f4c34fa /src/core/selinux-setup.c | |
parent | 4104970ef78e40e976215cdb0d1b9170a213cc4b (diff) |
manager: print fatal errors on the console too
When booting in quiet mode, fatal messages would not be shown at all to the user.
https://bugzilla.redhat.com/show_bug.cgi?id=1155468
Diffstat (limited to 'src/core/selinux-setup.c')
-rw-r--r-- | src/core/selinux-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/selinux-setup.c b/src/core/selinux-setup.c index 7653cccac3..fba915d7da 100644 --- a/src/core/selinux-setup.c +++ b/src/core/selinux-setup.c @@ -113,7 +113,7 @@ int mac_selinux_setup(bool *loaded_policy) { if (enforce > 0) { if (!initialized) { - log_emergency("Failed to load SELinux policy. Freezing."); + log_emergency("Failed to load SELinux policy."); return -EIO; } |