diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-05-08 12:40:37 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-05-08 12:40:37 +0300 |
commit | 461fd000d22d76d97ad0ac76263477d364691d32 (patch) | |
tree | aa5d72c97a6cf88daafad18b5872e87f3fad3b9e /system.h | |
parent | 6ca5373aa1f58ccc60e844bd8fd006a738670883 (diff) | |
download | librpm-tizen-461fd000d22d76d97ad0ac76263477d364691d32.tar.gz librpm-tizen-461fd000d22d76d97ad0ac76263477d364691d32.tar.bz2 librpm-tizen-461fd000d22d76d97ad0ac76263477d364691d32.zip |
is_selinux_enabled() returns 0 if not enabled, not -1
Diffstat (limited to 'system.h')
-rw-r--r-- | system.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -210,7 +210,7 @@ typedef char * security_context_t; #define security_check_context(_c) (0) -#define is_selinux_enabled() (-1) +#define is_selinux_enabled() (0) #define matchpathcon_init(_fn) (-1) #define matchpathcon_fini() (0) |