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/tests/sysdb-tests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/tests/sysdb-tests.c') diff --git a/server/tests/sysdb-tests.c b/server/tests/sysdb-tests.c index f809f554..cd357985 100644 --- a/server/tests/sysdb-tests.c +++ b/server/tests/sysdb-tests.c @@ -33,7 +33,7 @@ struct sysdb_test_ctx { struct sysdb_ctx *sysdb; struct confdb_ctx *confdb; - struct event_context *ev; + struct tevent_context *ev; }; static int setup_sysdb_tests(struct sysdb_test_ctx **ctx) @@ -51,7 +51,7 @@ static int setup_sysdb_tests(struct sysdb_test_ctx **ctx) /* Create an event context * It will not be used except in confdb_init and sysdb_init */ - test_ctx->ev = event_context_init(test_ctx); + test_ctx->ev = tevent_context_init(test_ctx); if (test_ctx->ev == NULL) { fail("Could not create event context"); talloc_free(test_ctx); -- cgit