summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2008-06-15 11:11:14 -0400
committerSimo Sorce <idra@samba.org>2008-06-15 11:11:14 -0400
commit1a7823823eab04baacee140ebd45b380dcee9cef (patch)
treebe2b0c8ba364b610f9874c2c3a61094512347a6e /source4/lib/ldb/common
parent4d8804f26cc554fe3a7bec78d09738ff1bbda7f7 (diff)
downloadsamba-1a7823823eab04baacee140ebd45b380dcee9cef.tar.gz
samba-1a7823823eab04baacee140ebd45b380dcee9cef.tar.bz2
samba-1a7823823eab04baacee140ebd45b380dcee9cef.zip
Now that we pass down the event context, start removing calls to
event_context_init() where possible (This used to be commit 412f7a98dd809306ac9f35003fce554e1e1252e7)
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r--source4/lib/ldb/common/ldb.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/lib/ldb/common/ldb.c b/source4/lib/ldb/common/ldb.c
index 3e725a5c09..22cd46d13f 100644
--- a/source4/lib/ldb/common/ldb.c
+++ b/source4/lib/ldb/common/ldb.c
@@ -45,6 +45,8 @@ struct ldb_context *ldb_init(TALLOC_CTX *mem_ctx, struct event_context *ev_ctx)
int ret;
ldb = talloc_zero(mem_ctx, struct ldb_context);
+ /* FIXME: Hack a new event context so that CMD line utilities work
+ * until we have them all converted */
if (ev_ctx == NULL) {
ev_ctx = event_context_init(ldb);
}