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/monitor/monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/monitor') diff --git a/server/monitor/monitor.c b/server/monitor/monitor.c index 86b2364c..cd4e3ceb 100644 --- a/server/monitor/monitor.c +++ b/server/monitor/monitor.c @@ -1811,7 +1811,7 @@ int monitor_process_init(TALLOC_CTX *mem_ctx, } unlink(cdb_file); - ret = confdb_init(ctx, ctx->ev, &ctx->cdb, cdb_file); + ret = confdb_init(ctx, &ctx->cdb, cdb_file); if (ret != EOK) { DEBUG(0,("The confdb initialization failed\n")); talloc_free(ctx); -- cgit