From 5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 21 Sep 2013 19:10:13 +0200 Subject: Include header file in implementation module. Declarations of public functions was in header files, but header files was not included in implementation file. --- src/providers/ad/ad_domain_info.c | 1 + src/providers/ad/ad_srv.c | 1 + src/providers/ipa/ipa_auth.c | 1 + src/providers/ipa/ipa_s2n_exop.c | 1 + src/providers/ipa/ipa_srv.c | 1 + src/providers/krb5/krb5_become_user.c | 1 + src/providers/krb5/krb5_init_shared.c | 1 + src/providers/ldap/ldap_access.c | 1 + src/providers/ldap/sdap_async_autofs.c | 1 + src/providers/ldap/sdap_async_enum.c | 1 + src/providers/ldap/sdap_async_nested_groups.c | 1 + src/providers/ldap/sdap_dyndns.c | 1 + 12 files changed, 12 insertions(+) (limited to 'src/providers') diff --git a/src/providers/ad/ad_domain_info.c b/src/providers/ad/ad_domain_info.c index eff2034d..c24da939 100644 --- a/src/providers/ad/ad_domain_info.c +++ b/src/providers/ad/ad_domain_info.c @@ -31,6 +31,7 @@ #include "providers/ldap/sdap.h" #include "providers/ldap/sdap_async.h" #include "providers/ldap/sdap_idmap.h" +#include "providers/ad/ad_domain_info.h" #include "util/util.h" #define AD_AT_OBJECT_SID "objectSID" diff --git a/src/providers/ad/ad_srv.c b/src/providers/ad/ad_srv.c index a238c192..89186dd1 100644 --- a/src/providers/ad/ad_srv.c +++ b/src/providers/ad/ad_srv.c @@ -28,6 +28,7 @@ #include "util/sss_ldap.h" #include "resolv/async_resolv.h" #include "providers/dp_backend.h" +#include "providers/ad/ad_srv.h" #include "providers/fail_over.h" #include "providers/fail_over_srv.h" #include "providers/ldap/sdap.h" diff --git a/src/providers/ipa/ipa_auth.c b/src/providers/ipa/ipa_auth.c index 651196a9..3db623f1 100644 --- a/src/providers/ipa/ipa_auth.c +++ b/src/providers/ipa/ipa_auth.c @@ -29,6 +29,7 @@ #include "providers/ldap/ldap_common.h" #include "providers/ldap/sdap_async.h" #include "providers/krb5/krb5_auth.h" +#include "providers/ipa/ipa_auth.h" #include "providers/ipa/ipa_common.h" #include "providers/ipa/ipa_config.h" diff --git a/src/providers/ipa/ipa_s2n_exop.c b/src/providers/ipa/ipa_s2n_exop.c index d8506aaa..e7dbeb45 100644 --- a/src/providers/ipa/ipa_s2n_exop.c +++ b/src/providers/ipa/ipa_s2n_exop.c @@ -24,6 +24,7 @@ #include "db/sysdb.h" #include "providers/ldap/sdap_async_private.h" #include "providers/ldap/ldap_common.h" +#include "providers/ipa/ipa_id.h" #include "providers/ipa/ipa_subdomains.h" enum input_types { diff --git a/src/providers/ipa/ipa_srv.c b/src/providers/ipa/ipa_srv.c index aa07cf05..21c75407 100644 --- a/src/providers/ipa/ipa_srv.c +++ b/src/providers/ipa/ipa_srv.c @@ -25,6 +25,7 @@ #include "util/util.h" #include "resolv/async_resolv.h" #include "providers/fail_over_srv.h" +#include "providers/ipa/ipa_srv.h" #define IPA_DNS_LOCATION "_location" 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 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) diff --git a/src/providers/ldap/ldap_access.c b/src/providers/ldap/ldap_access.c index bb5c37f4..8d5b5e22 100644 --- a/src/providers/ldap/ldap_access.c +++ b/src/providers/ldap/ldap_access.c @@ -27,6 +27,7 @@ #include "src/providers/data_provider.h" #include "src/providers/dp_backend.h" #include "src/providers/ldap/sdap_access.h" +#include "providers/ldap/ldap_common.h" static void sdap_access_reply(struct be_req *be_req, int pam_status) { diff --git a/src/providers/ldap/sdap_async_autofs.c b/src/providers/ldap/sdap_async_autofs.c index 4886150f..4d5e953d 100644 --- a/src/providers/ldap/sdap_async_autofs.c +++ b/src/providers/ldap/sdap_async_autofs.c @@ -27,6 +27,7 @@ #include "providers/ldap/sdap_async_private.h" #include "db/sysdb_autofs.h" #include "providers/ldap/ldap_common.h" +#include "providers/ldap/sdap_autofs.h" enum autofs_map_op { AUTOFS_MAP_OP_ADD, diff --git a/src/providers/ldap/sdap_async_enum.c b/src/providers/ldap/sdap_async_enum.c index 9a520ba5..b03c19a5 100644 --- a/src/providers/ldap/sdap_async_enum.c +++ b/src/providers/ldap/sdap_async_enum.c @@ -29,6 +29,7 @@ #include "db/sysdb.h" #include "providers/ldap/ldap_common.h" #include "providers/ldap/sdap_async.h" +#include "providers/ldap/sdap_async_enum.h" #include "providers/ldap/sdap_idmap.h" static struct tevent_req *enum_users_send(TALLOC_CTX *memctx, diff --git a/src/providers/ldap/sdap_async_nested_groups.c b/src/providers/ldap/sdap_async_nested_groups.c index 6e705661..7040c6e9 100644 --- a/src/providers/ldap/sdap_async_nested_groups.c +++ b/src/providers/ldap/sdap_async_nested_groups.c @@ -33,6 +33,7 @@ #include "db/sysdb.h" #include "providers/ldap/ldap_common.h" #include "providers/ldap/sdap_async.h" +#include "providers/ldap/sdap_async_private.h" #define sdap_nested_group_sysdb_search_users(domain, filter) \ sdap_nested_group_sysdb_search((domain), (filter), true) diff --git a/src/providers/ldap/sdap_dyndns.c b/src/providers/ldap/sdap_dyndns.c index 8fe2011d..bf5fb099 100644 --- a/src/providers/ldap/sdap_dyndns.c +++ b/src/providers/ldap/sdap_dyndns.c @@ -27,6 +27,7 @@ #include "providers/dp_backend.h" #include "providers/dp_dyndns.h" #include "providers/ldap/sdap_async_private.h" +#include "providers/ldap/sdap_dyndns.h" #include "providers/ldap/sdap_id_op.h" #include "providers/ldap/ldap_common.h" -- cgit