diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-02-22 01:54:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:48:44 -0500 |
commit | 7dc7156bd76425df129102a42dd29a85fd8c7ebc (patch) | |
tree | 2da9bd209f1cd6f102a48b26094f838860e7e181 /source4/lib/ldb/modules/asq.c | |
parent | 81adf162a80b6b0c6c24d40f783ddcd1c9813532 (diff) | |
download | samba-7dc7156bd76425df129102a42dd29a85fd8c7ebc.tar.gz samba-7dc7156bd76425df129102a42dd29a85fd8c7ebc.tar.bz2 samba-7dc7156bd76425df129102a42dd29a85fd8c7ebc.zip |
r21496: A number of ldb control and LDAP changes, surrounding the
'phantom_root' flag in the search_options control
- Add in support for LDB controls to the js layer
- Test the behaviour
- Implement support for the 'phantom_root' flag in the partitions module
- Make the LDAP server set the 'phantom_root' flag in the search_options control
- This replaces the global_catalog flag passed down as an opaque pointer
- Rework the string-format control parsing function into
ldb_parse_control_strings(), returning errors by ldb_errorstring()
method, rather than with printf to stderr
- Rework some of the ldb_control handling logic
Andrew Bartlett
(This used to be commit 2b3df7f38d7790358dbb4de1b8609bf794a351fb)
Diffstat (limited to 'source4/lib/ldb/modules/asq.c')
-rw-r--r-- | source4/lib/ldb/modules/asq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/modules/asq.c b/source4/lib/ldb/modules/asq.c index 413f6732ac..0c31727909 100644 --- a/source4/lib/ldb/modules/asq.c +++ b/source4/lib/ldb/modules/asq.c @@ -401,7 +401,7 @@ static int asq_search(struct ldb_module *module, struct ldb_request *req) struct ldb_handle *h; /* check if there's a paged request control */ - control = get_control_from_list(req->controls, LDB_CONTROL_ASQ_OID); + control = ldb_request_get_control(req, LDB_CONTROL_ASQ_OID); if (control == NULL) { /* not found go on */ return ldb_next_request(module, req); |