From 2d19dca9c80a5e3990296dde67163fce36ac883d Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 30 May 2006 00:33:52 +0000 Subject: r15944: rename LDB_ASYNC_ADD -> LDB_ADD, LDB_ASYNC_MODIFY -> LDB_MODIFY, etc... (This used to be commit 55d97ef88f377ef1dbf7b1774a15cf9035e2f320) --- source4/dsdb/samdb/ldb_modules/password_hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/dsdb/samdb/ldb_modules/password_hash.c') diff --git a/source4/dsdb/samdb/ldb_modules/password_hash.c b/source4/dsdb/samdb/ldb_modules/password_hash.c index 16fe6b8f4d..79c863374c 100644 --- a/source4/dsdb/samdb/ldb_modules/password_hash.c +++ b/source4/dsdb/samdb/ldb_modules/password_hash.c @@ -488,7 +488,7 @@ static int build_domain_data_request(struct ph_async_context *ac, ldb_debug(ac->module->ldb, LDB_DEBUG_ERROR, "Out of Memory!\n"); return LDB_ERR_OPERATIONS_ERROR; } - ac->dom_req->operation = LDB_ASYNC_SEARCH; + ac->dom_req->operation = LDB_SEARCH; ac->dom_req->op.search.base = NULL; ac->dom_req->op.search.scope = LDB_SCOPE_SUBTREE; @@ -828,7 +828,7 @@ static int password_hash_mod_search_self(struct ldb_async_handle *h) { return LDB_ERR_OPERATIONS_ERROR; } - ac->search_req->operation = LDB_ASYNC_SEARCH; + ac->search_req->operation = LDB_SEARCH; ac->search_req->op.search.base = ac->orig_req->op.mod.message->dn; ac->search_req->op.search.scope = LDB_SCOPE_BASE; ac->search_req->op.search.tree = ldb_parse_tree(ac->module->ldb, NULL); -- cgit