From 49f68caed20d2a7d1850e493005bdf85929d6365 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sat, 22 Jul 2006 17:21:59 +0000 Subject: r17186: "async" word abuse clean-up part 2 (This used to be commit c6aa60c7e69abf1f83efc150b1c3ed02751c45fc) --- source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'source4/lib/ldb/ldb_sqlite3') diff --git a/source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c b/source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c index c2ac9f47f4..153a6d27d4 100644 --- a/source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c +++ b/source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c @@ -2018,38 +2018,38 @@ static int lsql_request(struct ldb_module *module, struct ldb_request *req) req->op.search.scope, req->op.search.tree, req->op.search.attrs, - req->async.context, - req->async.callback, - &req->async.handle); + req->context, + req->callback, + &req->handle); /* case LDB_ADD: return lsql_add_async(module, req->op.add.message, - req->async.context, - req->async.callback, - &req->async.handle); + req->context, + req->callback, + &req->handle); case LDB_MODIFY: return lsql_modify_async(module, req->op.mod.message, - req->async.context, - req->async.callback, - &req->async.handle); + req->context, + req->callback, + &req->handle); */ case LDB_DELETE: return lsql_delete_async(module, req->op.del.dn, - req->async.context, - req->async.callback, - &req->async.handle); + req->context, + req->callback, + &req->handle); case LDB_RENAME: return lsql_rename_async(module, req->op.rename.olddn, req->op.rename.newdn, - req->async.context, - req->async.callback, - &req->async.handle); + req->context, + req->callback, + &req->handle); default: return LDB_ERR_OPERATIONS_ERROR; -- cgit