diff options
author | Adam Jackson <ajax@redhat.com> | 2009-03-27 15:56:15 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-03-27 15:56:15 -0400 |
commit | 283a081572d8db787c77d09e5ba6bcadebf4f7fe (patch) | |
tree | 0b639edd29934e6568ef860c514c92b1a14ab908 | |
parent | 8e7facfe3013abda12a0c39ad8b4d025618077a7 (diff) |
selinux: Only activate if policy says to be an object manager
-rw-r--r-- | Xext/xselinux.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Xext/xselinux.c b/Xext/xselinux.c index dfeef2f21..4a1fe004b 100644 --- a/Xext/xselinux.c +++ b/Xext/xselinux.c @@ -1971,6 +1971,10 @@ SELinuxExtensionInit(INITARGS) return; } + /* Don't init unless there's something to do */ + if (!security_get_boolean_active("xserver_object_manager")) + return; + /* Check SELinux mode in configuration file */ switch(selinuxEnforcingState) { case SELINUX_MODE_DISABLED: |