summaryrefslogtreecommitdiff
path: root/openbsd-compat/port-linux.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2010-09-10 10:30:25 +1000
committerDarren Tucker <dtucker@zip.com.au>2010-09-10 10:30:25 +1000
commit50e3bab2421e41cbce9093c5047298ed7ad730cb (patch)
tree71685c126e1d7a76f59fe38c25af15a93efb835c /openbsd-compat/port-linux.c
parentc79ff0770e0ac1e0d9acc2741190cf7599bb6bd8 (diff)
downloadopenssh-git-50e3bab2421e41cbce9093c5047298ed7ad730cb.tar.gz
- (dtucker) [openbsd-compat/port-linux.c] Check is_selinux_enabled for exact
return code since it can apparently return -1 under some conditions. From openssh bugs werbittewas de, ok djm@
Diffstat (limited to 'openbsd-compat/port-linux.c')
-rw-r--r--openbsd-compat/port-linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/port-linux.c b/openbsd-compat/port-linux.c
index 89b9a734..86d16dc6 100644
--- a/openbsd-compat/port-linux.c
+++ b/openbsd-compat/port-linux.c
@@ -1,4 +1,4 @@
-/* $Id: port-linux.c,v 1.8 2010/03/01 04:52:50 dtucker Exp $ */
+/* $Id: port-linux.c,v 1.9 2010/09/10 00:30:25 dtucker Exp $ */
/*
* Copyright (c) 2005 Daniel Walsh <dwalsh@redhat.com>
@@ -45,7 +45,7 @@ ssh_selinux_enabled(void)
static int enabled = -1;
if (enabled == -1) {
- enabled = is_selinux_enabled();
+ enabled = (is_selinux_enabled() == 1);
debug("SELinux support %s", enabled ? "enabled" : "disabled");
}