summaryrefslogtreecommitdiffstats
path: root/server/monitor
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-09-10 09:26:28 -0400
committerSimo Sorce <ssorce@redhat.com>2009-09-10 17:28:35 -0400
commit5b72a797f454639496087fde6715237115be0b0a (patch)
tree0e3113ad9bc1cc8af0dd398783b1f7138c798d3b /server/monitor
parentc80b4774c8358e8e9bb141ff28a5660224698a58 (diff)
downloadsssd-5b72a797f454639496087fde6715237115be0b0a.tar.gz
sssd-5b72a797f454639496087fde6715237115be0b0a.tar.xz
sssd-5b72a797f454639496087fde6715237115be0b0a.zip
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.
Diffstat (limited to 'server/monitor')
-rw-r--r--server/monitor/monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/monitor/monitor.c b/server/monitor/monitor.c
index 86b2364cf..cd4e3cebb 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);