From 5b72a797f454639496087fde6715237115be0b0a Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 10 Sep 2009 09:26:28 -0400 Subject: Remove unused event context argument from confdb_init Because the confdb always operates synchronously, it maintains its own private event context internally. The event context argument passed to it is never used, so we'll remove it to avoid confusion. --- server/tests/sysdb-tests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/tests/sysdb-tests.c') diff --git a/server/tests/sysdb-tests.c b/server/tests/sysdb-tests.c index 38bfcb10b..5250b0883 100644 --- a/server/tests/sysdb-tests.c +++ b/server/tests/sysdb-tests.c @@ -81,7 +81,7 @@ static int setup_sysdb_tests(struct sysdb_test_ctx **ctx) DEBUG(3, ("CONFDB: %s\n", conf_db)); /* Connect to the conf db */ - ret = confdb_init(test_ctx, test_ctx->ev, &test_ctx->confdb, conf_db); + ret = confdb_init(test_ctx, &test_ctx->confdb, conf_db); if (ret != EOK) { fail("Could not initialize connection to the confdb"); talloc_free(test_ctx); -- cgit