diff options
Diffstat (limited to 'openbsd-compat/port-linux.c')
-rw-r--r-- | openbsd-compat/port-linux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/port-linux.c b/openbsd-compat/port-linux.c index 89b9a7340..86d16dc6e 100644 --- a/openbsd-compat/port-linux.c +++ b/openbsd-compat/port-linux.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: port-linux.c,v 1.8 2010/03/01 04:52:50 dtucker Exp $ */ | 1 | /* $Id: port-linux.c,v 1.9 2010/09/10 00:30:25 dtucker Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2005 Daniel Walsh <dwalsh@redhat.com> | 4 | * Copyright (c) 2005 Daniel Walsh <dwalsh@redhat.com> |
@@ -45,7 +45,7 @@ ssh_selinux_enabled(void) | |||
45 | static int enabled = -1; | 45 | static int enabled = -1; |
46 | 46 | ||
47 | if (enabled == -1) { | 47 | if (enabled == -1) { |
48 | enabled = is_selinux_enabled(); | 48 | enabled = (is_selinux_enabled() == 1); |
49 | debug("SELinux support %s", enabled ? "enabled" : "disabled"); | 49 | debug("SELinux support %s", enabled ? "enabled" : "disabled"); |
50 | } | 50 | } |
51 | 51 | ||