diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-12-16 08:59:05 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-12-17 12:29:27 +1100 |
commit | 596fe759e1fed835173146a74ac9986066acc48e (patch) | |
tree | dfd67129f0d768c57179d9fcd5a59d8ba656f8d4 /source4/lib/ldb/ldb_ildap | |
parent | 18ef32f4ce6e1fe240aa042a81fb493eaae421af (diff) | |
download | samba-596fe759e1fed835173146a74ac9986066acc48e.tar.gz samba-596fe759e1fed835173146a74ac9986066acc48e.tar.bz2 samba-596fe759e1fed835173146a74ac9986066acc48e.zip |
s4:ldb: make it possible to return per entry controls
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source4/lib/ldb/ldb_ildap')
-rw-r--r-- | source4/lib/ldb/ldb_ildap/ldb_ildap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/ldb/ldb_ildap/ldb_ildap.c b/source4/lib/ldb/ldb_ildap/ldb_ildap.c index ae79bdfa48..b17d063c0c 100644 --- a/source4/lib/ldb/ldb_ildap/ldb_ildap.c +++ b/source4/lib/ldb/ldb_ildap/ldb_ildap.c @@ -311,7 +311,9 @@ static void ildb_callback(struct ldap_request *req) ldbmsg->num_elements = search->num_attributes; ldbmsg->elements = talloc_move(ldbmsg, &search->attributes); - ret = ldb_module_send_entry(ac->req, ldbmsg); + controls = talloc_steal(ac, msg->controls); + + ret = ldb_module_send_entry(ac->req, ldbmsg, controls); if (ret != LDB_SUCCESS) { callback_failed = true; } |