From aeedd29d390a1bb8ad1b446bf9b39cffd42e5612 Mon Sep 17 00:00:00 2001 From: Nadezhda Ivanova Date: Mon, 27 Sep 2010 10:01:09 -0700 Subject: s4-ldb: Added ldb_request_replace_control It is the same as ldb_request_add_control, except it will replace an existing control. Autobuild-User: Andrew Tridgell Autobuild-Date: Mon Sep 27 19:00:38 UTC 2010 on sn-devel-104 --- source4/dsdb/samdb/ldb_modules/extended_dn_in.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/dsdb/samdb') diff --git a/source4/dsdb/samdb/ldb_modules/extended_dn_in.c b/source4/dsdb/samdb/ldb_modules/extended_dn_in.c index c1afbea177..400c37faf2 100644 --- a/source4/dsdb/samdb/ldb_modules/extended_dn_in.c +++ b/source4/dsdb/samdb/ldb_modules/extended_dn_in.c @@ -370,7 +370,7 @@ static int extended_dn_in_fix(struct ldb_module *module, struct ldb_request *req struct ldb_search_options_control *control; control = talloc(down_req, struct ldb_search_options_control); control->search_options = 2; - ret = ldb_request_add_control(down_req, + ret = ldb_request_replace_control(down_req, LDB_CONTROL_SEARCH_OPTIONS_OID, true, control); if (ret != LDB_SUCCESS) { -- cgit