summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-12-18 00:43:24 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-12-18 01:33:24 +0100
commit6967cf27eb94f9097c302bc2807f430ca4a641f2 (patch)
tree75f0f882a78f01057b69b6db62b09f0e6e544d5e /source4/dsdb/samdb/ldb_modules/repl_meta_data.c
parente338bbd45030cade0c540d5ea71f60f899143c09 (diff)
downloadsamba-6967cf27eb94f9097c302bc2807f430ca4a641f2.tar.gz
samba-6967cf27eb94f9097c302bc2807f430ca4a641f2.tar.bz2
samba-6967cf27eb94f9097c302bc2807f430ca4a641f2.zip
ldb: Rename controls_except_specified -> ldb_controls_except_specified.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Dec 18 01:33:24 CET 2010 on sn-devel-104
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/repl_meta_data.c')
-rw-r--r--source4/dsdb/samdb/ldb_modules/repl_meta_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/repl_meta_data.c b/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
index 2bdb7af23f..28aef32d07 100644
--- a/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
+++ b/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
@@ -369,7 +369,7 @@ static int replmd_op_callback(struct ldb_request *req, struct ldb_reply *ares)
partition_ctrl = ldb_reply_get_control(ares, DSDB_CONTROL_CURRENT_PARTITION_OID);
/* Remove the 'partition' control from what we pass up the chain */
- controls = controls_except_specified(ares->controls, ares, partition_ctrl);
+ controls = ldb_controls_except_specified(ares->controls, ares, partition_ctrl);
if (ares->error != LDB_SUCCESS) {
return ldb_module_done(ac->req, controls,
@@ -438,7 +438,7 @@ static int replmd_op_callback(struct ldb_request *req, struct ldb_reply *ares)
* eventually with the ares */
talloc_free(partition_ctrl);
return ldb_module_done(ac->req,
- controls_except_specified(controls, ares, partition_ctrl),
+ ldb_controls_except_specified(controls, ares, partition_ctrl),
ares->response, LDB_SUCCESS);
}
}