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 + 2 files changed, 2 insertions(+) (limited to 'src/providers/ad') 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" -- cgit