summaryrefslogtreecommitdiffstats
path: root/login-utils/vipw.c
diff options
context:
space:
mode:
authorKarel Zak2008-07-01 14:24:58 +0200
committerKarel Zak2008-07-01 14:32:53 +0200
commit4ba66edf82e03109bd9110682179254d823c58a3 (patch)
treeb0a86c16fc0ac848949f603fcc75e96d994dafca /login-utils/vipw.c
parentmount: warn on "file_t" selinux context (diff)
downloadkernel-qcow2-util-linux-4ba66edf82e03109bd9110682179254d823c58a3.tar.gz
kernel-qcow2-util-linux-4ba66edf82e03109bd9110682179254d823c58a3.tar.xz
kernel-qcow2-util-linux-4ba66edf82e03109bd9110682179254d823c58a3.zip
selinux: is_selinux_enabled() returns 0, 1 and -1
Unfortunately, the current libselinux implementation of is_selinux_enabled() returns -1 on error. This behavior is undocumented. The proper solution is to use "if (is_selinux_enabled() > 0)". Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'login-utils/vipw.c')
-rw-r--r--login-utils/vipw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/login-utils/vipw.c b/login-utils/vipw.c
index fea28ac2e..5f4472111 100644
--- a/login-utils/vipw.c
+++ b/login-utils/vipw.c
@@ -195,7 +195,7 @@ pw_unlock(void) {
link(orig_file, tmp);
#ifdef HAVE_LIBSELINUX
- if (is_selinux_enabled()) {
+ if (is_selinux_enabled() > 0) {
security_context_t passwd_context=NULL;
int ret=0;
if (getfilecon(orig_file,&passwd_context) < 0) {