From c9f6d2795fde2f9bf80277d425df2b44bc860226 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 25 Feb 2009 16:40:17 -0500 Subject: Rebase the code to use talloc, tdb, tevent, ldb as external dependencies based on the latest samba code. Convert all references to the old events library to use the renamed tevent library. --- server/util/util.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'server/util/util.h') diff --git a/server/util/util.h b/server/util/util.h index 7388febd6..c784bf58a 100644 --- a/server/util/util.h +++ b/server/util/util.h @@ -2,9 +2,15 @@ #define __SSSD_UTIL_H__ #include +#include #include -#include "replace.h" +#include +#include +#include +#include +#include "config.h" #include "talloc.h" +#include "tevent.h" extern const char *debug_prg_name; extern int debug_level; @@ -42,7 +48,7 @@ void debug_fn(const char *format, ...); #define FLAGS_PID_FILE 0x0004 struct main_context { - struct event_context *event_ctx; + struct tevent_context *event_ctx; struct confdb_ctx *confdb_ctx; }; -- cgit