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/torture/ldap/schema.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/torture/ldap/schema.c') diff --git a/source4/torture/ldap/schema.c b/source4/torture/ldap/schema.c index 80fe3eab1cf..068888bae9f 100644 --- a/source4/torture/ldap/schema.c +++ b/source4/torture/ldap/schema.c @@ -231,8 +231,8 @@ static BOOL test_create_schema_type(struct ldb_context *ldb, struct test_rootDSE if (req->op.search.tree == NULL) return -1; req->op.search.attrs = NULL; req->controls = ctrl; - req->async.context = actx; - req->async.callback = test_schema_search_callback; + req->context = actx; + req->callback = test_schema_search_callback; ldb_set_timeout(ldb, req, 0); actx->count = 0; @@ -248,7 +248,7 @@ again: return False; } - ret = ldb_wait(req->async.handle, LDB_WAIT_ALL); + ret = ldb_wait(req->handle, LDB_WAIT_ALL); if (ret != LDB_SUCCESS) { d_printf("search error - %s\n", ldb_errstring(ldb)); return False; -- cgit