summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@tycho.nsa.gov>2009-10-15 13:51:34 -0400
committerEamon Walsh <ewalsh@tycho.nsa.gov>2009-10-15 13:51:34 -0400
commitb14bbce6b420a3891cab886d759175c6a16d54e5 (patch)
tree687ef5df7ef64c500c05494238e7443fbea74e0a
parente26957d0cd937a6433f980c7384f0290c0c579b3 (diff)
xselinux: Note something in the log if disabled by boolean.
Signed-off-by: Eamon Walsh <ewalsh@tycho.nsa.gov>
-rw-r--r--Xext/xselinux.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Xext/xselinux.c b/Xext/xselinux.c
index 9d6343684..8709b20e3 100644
--- a/Xext/xselinux.c
+++ b/Xext/xselinux.c
@@ -1991,8 +1991,10 @@ SELinuxExtensionInit(INITARGS)
1991 } 1991 }
1992 1992
1993 /* Don't init unless there's something to do */ 1993 /* Don't init unless there's something to do */
1994 if (!security_get_boolean_active("xserver_object_manager")) 1994 if (!security_get_boolean_active("xserver_object_manager")) {
1995 LogMessage(X_INFO, "SELinux: Disabled by boolean\n");
1995 return; 1996 return;
1997 }
1996 1998
1997 /* Check SELinux mode in configuration file */ 1999 /* Check SELinux mode in configuration file */
1998 switch(selinuxEnforcingState) { 2000 switch(selinuxEnforcingState) {