>From 1f0e5fc30f6ea7801d8ed553caed995f28da7a82 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 28 Aug 2013 08:31:18 +0200 Subject: [PATCH 6/7] 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(+) diff --git a/src/providers/ipa/ipa_hbac.h b/src/providers/ipa/ipa_hbac.h index 8bc2c4f90f32a83d14240abb4979ae265913ae6a..f43611351c8a5dfb20ca3d075f0bcd7bb71798c9 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 { -- 1.8.3.1