summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/modules
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-12-17 23:00:46 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-12-18 00:47:06 +0100
commitfff18e0cc38dca018c44696a93fcd7356a823bba (patch)
tree0837d5ed2394729607706e7d45f803d9007ef88a /source4/lib/ldb/modules
parentf9fbe0874f9ef5fe70892d68749292821f4f4682 (diff)
downloadsamba-fff18e0cc38dca018c44696a93fcd7356a823bba.tar.gz
samba-fff18e0cc38dca018c44696a93fcd7356a823bba.tar.bz2
samba-fff18e0cc38dca018c44696a93fcd7356a823bba.zip
ldb: Rename two exported functions so they match abi_match.
Diffstat (limited to 'source4/lib/ldb/modules')
-rw-r--r--source4/lib/ldb/modules/asq.c2
-rw-r--r--source4/lib/ldb/modules/paged_results.c2
-rw-r--r--source4/lib/ldb/modules/sort.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/modules/asq.c b/source4/lib/ldb/modules/asq.c
index a4b7d200ec..7482de826f 100644
--- a/source4/lib/ldb/modules/asq.c
+++ b/source4/lib/ldb/modules/asq.c
@@ -301,7 +301,7 @@ static int asq_build_multiple_requests(struct asq_context *ac, bool *terminated)
/* remove the ASQ control itself */
control = ldb_request_get_control(ac->req, LDB_CONTROL_ASQ_OID);
- if (!save_controls(control, ac->reqs[i], &saved_controls)) {
+ if (!ldb_save_controls(control, ac->reqs[i], &saved_controls)) {
return LDB_ERR_OPERATIONS_ERROR;
}
}
diff --git a/source4/lib/ldb/modules/paged_results.c b/source4/lib/ldb/modules/paged_results.c
index 291bfc292e..2d6c62fd54 100644
--- a/source4/lib/ldb/modules/paged_results.c
+++ b/source4/lib/ldb/modules/paged_results.c
@@ -361,7 +361,7 @@ static int paged_search(struct ldb_module *module, struct ldb_request *req)
/* save it locally and remove it from the list */
/* we do not need to replace them later as we
* are keeping the original req intact */
- if (!save_controls(control, search_req, &saved_controls)) {
+ if (!ldb_save_controls(control, search_req, &saved_controls)) {
return LDB_ERR_OPERATIONS_ERROR;
}
diff --git a/source4/lib/ldb/modules/sort.c b/source4/lib/ldb/modules/sort.c
index e43b62f9ca..c6fce2d96e 100644
--- a/source4/lib/ldb/modules/sort.c
+++ b/source4/lib/ldb/modules/sort.c
@@ -323,7 +323,7 @@ static int server_sort_search(struct ldb_module *module, struct ldb_request *req
/* save it locally and remove it from the list */
/* we do not need to replace them later as we
* are keeping the original req intact */
- if (!save_controls(control, down_req, &saved_controls)) {
+ if (!ldb_save_controls(control, down_req, &saved_controls)) {
return LDB_ERR_OPERATIONS_ERROR;
}