summaryrefslogtreecommitdiff
path: root/src/providers/ipa/ipa_selinux.h
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-05-14 08:44:11 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-05-14 10:07:08 +0200
commit39472b5dfcc82815ae819a5b5831859249962a4c (patch)
tree82df7a8847c08e4cbdf3d2dfd8eeaee328742cc2 /src/providers/ipa/ipa_selinux.h
parent5aad10b49e193ee14a86e1277146a223005a2d6b (diff)
downloadsssd-39472b5dfcc82815ae819a5b5831859249962a4c.tar.gz
sssd-39472b5dfcc82815ae819a5b5831859249962a4c.tar.bz2
sssd-39472b5dfcc82815ae819a5b5831859249962a4c.zip
Fix broken build with selinux.
Header file selinux/selinux.h was removed in commit 245cc346 from file ipa_selinux.c, because it breaks build without selinux. But new error was introduced. This patch fixes compilation with selinux and include header file selinux/selinux.h only if both macros exist HAVE_SELINUX and HAVE_SELINUX_LOGIN_DIR. Now ipa_selinux.c should be correctly built with and without selinux.
Diffstat (limited to 'src/providers/ipa/ipa_selinux.h')
-rw-r--r--src/providers/ipa/ipa_selinux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_selinux.h b/src/providers/ipa/ipa_selinux.h
index e8fd4a06..08cdaef7 100644
--- a/src/providers/ipa/ipa_selinux.h
+++ b/src/providers/ipa/ipa_selinux.h
@@ -32,7 +32,7 @@
#define ALL_SERVICES "*"
#define selogin_path(mem_ctx, username) \
talloc_asprintf(mem_ctx, "%s/logins/%s", selinux_policy_root(), username)
-#endif
+#endif /* HAVE_SELINUX_LOGIN_DIR */
struct ipa_selinux_ctx {
struct ipa_id_ctx *id_ctx;