diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-09-21 18:37:56 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-24 15:15:41 +0200 |
commit | 889442337407f85c06a88ec158047e1586675e20 (patch) | |
tree | 75293c11454a6847b685c9944711bfb4263ac992 | |
parent | 56ed2be9a95cb5713ef72c4933e362a36dc7a607 (diff) | |
download | sssd-889442337407f85c06a88ec158047e1586675e20.tar.gz sssd-889442337407f85c06a88ec158047e1586675e20.tar.xz 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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/selinux.c b/src/tools/selinux.c index 8eb19a236..e4a307810 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" |