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/confdb/confdb.c | 1 - server/confdb/confdb.h | 1 - 2 files changed, 2 deletions(-) (limited to 'server/confdb') diff --git a/server/confdb/confdb.c b/server/confdb/confdb.c index 1ef2233a0..8fbae2f7a 100644 --- a/server/confdb/confdb.c +++ b/server/confdb/confdb.c @@ -627,7 +627,6 @@ done: } int confdb_init(TALLOC_CTX *mem_ctx, - struct tevent_context *ev, struct confdb_ctx **cdb_ctx, char *confdb_location) { diff --git a/server/confdb/confdb.h b/server/confdb/confdb.h index d325ac8fb..d49040fee 100644 --- a/server/confdb/confdb.h +++ b/server/confdb/confdb.h @@ -86,7 +86,6 @@ int confdb_get_string_as_list(struct confdb_ctx *cdb, TALLOC_CTX *ctx, char ***result); int confdb_init(TALLOC_CTX *mem_ctx, - struct tevent_context *ev, struct confdb_ctx **cdb_ctx, char *confdb_location); -- cgit