From b7fd1a399e96a1beec71bfc269cd9e789ba64dac Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 28 Aug 2013 08:31:18 +0200 Subject: IPA_HBAC: Explicitelly include header file time.h struct hbac_eval_req is defined in header file and it has attribute request_time with type time_t, but header file "time.h" was not included. It was not problem, because time.h was indirectly included by stdlib.h (stdlib.h -> sys/types.h -> time.h) in implementation files, but other platforms can have other dependencies among header files. --- src/providers/ipa/ipa_hbac.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/providers') diff --git a/src/providers/ipa/ipa_hbac.h b/src/providers/ipa/ipa_hbac.h index 02077e37e..b1d8efabb 100644 --- a/src/providers/ipa/ipa_hbac.h +++ b/src/providers/ipa/ipa_hbac.h @@ -39,6 +39,7 @@ #include #include +#include /** Result of HBAC evaluation */ enum hbac_eval_result { -- cgit