diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-09-21 19:10:13 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-24 15:15:41 +0200 |
commit | 5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9 (patch) | |
tree | 517b917312730f74344dd9c1d71b1c5f9d4be9f0 /src/providers/krb5 | |
parent | 889442337407f85c06a88ec158047e1586675e20 (diff) | |
download | sssd-5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9.tar.gz sssd-5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9.tar.bz2 sssd-5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9.zip |
Include header file in implementation module.
Declarations of public functions was in header files,
but header files was not included in implementation file.
Diffstat (limited to 'src/providers/krb5')
-rw-r--r-- | src/providers/krb5/krb5_become_user.c | 1 | ||||
-rw-r--r-- | src/providers/krb5/krb5_init_shared.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/providers/krb5/krb5_become_user.c b/src/providers/krb5/krb5_become_user.c index 8cbeb1ce..4d5346f3 100644 --- a/src/providers/krb5/krb5_become_user.c +++ b/src/providers/krb5/krb5_become_user.c @@ -23,6 +23,7 @@ */ #include "util/util.h" +#include "providers/krb5/krb5_utils.h" #include <grp.h> errno_t become_user(uid_t uid, gid_t gid) diff --git a/src/providers/krb5/krb5_init_shared.c b/src/providers/krb5/krb5_init_shared.c index c9eec2f8..4573d75d 100644 --- a/src/providers/krb5/krb5_init_shared.c +++ b/src/providers/krb5/krb5_init_shared.c @@ -24,6 +24,7 @@ #include "providers/krb5/krb5_common.h" #include "providers/krb5/krb5_auth.h" +#include "providers/krb5/krb5_init_shared.h" errno_t krb5_child_init(struct krb5_ctx *krb5_auth_ctx, struct be_ctx *bectx) |