diff options
author | Simo Sorce <idra@samba.org> | 2008-10-14 11:55:24 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-10-14 12:01:27 -0400 |
commit | 2664ecb3d7f831f0d677e2f9034ab0fd6fe44fd5 (patch) | |
tree | 26715da663bea611d4d382c06c0c52ba3a407fc6 | |
parent | 1170303766a4962cbb3253b8404a258bcfac8bf3 (diff) | |
download | sssd-2664ecb3d7f831f0d677e2f9034ab0fd6fe44fd5.tar.gz sssd-2664ecb3d7f831f0d677e2f9034ab0fd6fe44fd5.tar.xz sssd-2664ecb3d7f831f0d677e2f9034ab0fd6fe44fd5.zip |
Fix a bug in ASQ that makes it not very useful
-rw-r--r-- | ldb/modules/asq.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, |