summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-09-21 18:37:56 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-09-24 15:15:41 +0200
commit889442337407f85c06a88ec158047e1586675e20 (patch)
tree75293c11454a6847b685c9944711bfb4263ac992
parent56ed2be9a95cb5713ef72c4933e362a36dc7a607 (diff)
downloadsssd-889442337407f85c06a88ec158047e1586675e20.tar.gz
sssd-889442337407f85c06a88ec158047e1586675e20.tar.bz2
sssd-889442337407f85c06a88ec158047e1586675e20.zip
Include right header file
Public selinux functions are defined in file src/tools/selinux.c (selinux_file_context, reset_selinux_file_context, set_seuser, del_seuser), but wrong header file was included "util/util.h" All declarations are in header file "tools/tools_util.h". This patch include right header file.
-rw-r--r--src/tools/selinux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/selinux.c b/src/tools/selinux.c
index 8eb19a23..e4a30781 100644
--- a/src/tools/selinux.c
+++ b/src/tools/selinux.c
@@ -31,7 +31,7 @@
#include <semanage/semanage.h>
#endif
-#include "util/util.h"
+#include "tools/tools_util.h"
#ifndef DEFAULT_SERANGE
#define DEFAULT_SERANGE "s0"