From 2664ecb3d7f831f0d677e2f9034ab0fd6fe44fd5 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 14 Oct 2008 11:55:24 -0400 Subject: Fix a bug in ASQ that makes it not very useful --- ldb/modules/asq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldb/modules') diff --git a/ldb/modules/asq.c b/ldb/modules/asq.c index 17896a006..835715e7d 100644 --- a/ldb/modules/asq.c +++ b/ldb/modules/asq.c @@ -222,10 +222,10 @@ static int asq_build_first_request(struct asq_context *ac, struct ldb_request ** base_attrs[1] = NULL; - ret = ldb_build_search_req_ex(base_req, ac->module->ldb, ac, + ret = ldb_build_search_req(base_req, ac->module->ldb, ac, ac->req->op.search.base, LDB_SCOPE_BASE, - ac->req->op.search.tree, + NULL, (const char * const *)base_attrs, NULL, ac, asq_base_callback, -- cgit